The latest Linux Kernel LTS 3.10.20 has been released recently. All users of the 3.10 kernel series must upgrade. This tutorial shows how to upgrade it in Ubuntu 13.04, Ubuntu 12.04, and Linux Mint.
Kernel 3.10.20 LTS contains mostly USB, AlSA, Network fixes and drivers updates. For details, read the official announcement.
Install / Upgrade kernel 3.10.20
First, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run commands below one by one to Download the DEBs from kernel.ubuntu.com/~kernel-ppa:
For 32 bit system:
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.10.20-saucy/linux-headers-3.10.20-031020-generic_3.10.20-031020.201311201536_i386.deb wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.10.20-saucy/linux-headers-3.10.20-031020_3.10.20-031020.201311201536_all.deb wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.10.20-saucy/linux-image-3.10.20-031020-generic_3.10.20-031020.201311201536_i386.deb
For 64 bit system:
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.10.20-saucy/linux-headers-3.10.20-031020-generic_3.10.20-031020.201311201536_amd64.deb wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.10.20-saucy/linux-headers-3.10.20-031020_3.10.20-031020.201311201536_all.deb wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.10.20-saucy/linux-image-3.10.20-031020-generic_3.10.20-031020.201311201536_amd64.deb
After that, install them via:
sudo dpkg -i linux-headers-3.10.20-*.deb linux-image-3.10.20-*.deb
Restart your computer and done.
If for some reason this kernel does not work properly, boot into previous kernel and run command to remove Linux Kernel 3.10.20:
sudo apt-get purge linux-headers-3.10.20-* linux-image-3.10.20-*