
Linux 3.4.7 brings some core patches, improvements in filesystem, ARM fixes, and some updated drivers. You can find the full changelog here.
Linux Kernel 3.4.7 Installation
Open the terminal and install Linux Kernel 3.4.7 on Ubuntu 12.04/Linux Mint 13 or older with the following commands:
cd /tmp && wget -O linux-kernel-3.4.7 http://dl.dropbox.com/u/47950494/upubuntu.com/linux-kernel-3.4.7
chmod +x linux-kernel-3.4.7
sudo sh linux-kernel-3.4.7
Restart now your computer and check your current kernel version with this command:
uname -r
Outputs returned:
3.4.7-030407-generic
To restore the previous kernel and remove Linux 3.4.7, issue this command, then reboot:
sudo apt-get purge linux-image-3.4.7-030407-generic
Good luck!
Post a Comment