ubuntu升级内核

The simplest set of instructions I always used for kernel upgrade / downgrade are by ubuntuforums.org user by the name of lykwydchykyn (url modified by me for this post):

Go here: http://kernel.ubuntu.com/~kernel-ppa/mainline/ Download 3 (maybe 4) debs to a folder somewhere:

linux-headers-VERSION-NUMBER_all.deb
linux-headers-VERSION-NUMBER_amd64.deb
linux-image-VERSION-NUMBER_amd64.deb
linux-image-extra-VERSION-NUMBER_amd64.deb   # if available

Install the debs with whatever package manager front-end you use (is gdebi still around?), or use these commands:

cd /path/to/folder/where/you/put/the/debs
sudo dpkg -i *.deb

Source: http://ubuntuforums.org/showthread.php?p=11391743#post11391743

参考:http://my.oschina.net/eechen/blog/202438
原文:http://askubuntu.com/questions/257617/how-can-i-upgrade-the-ubuntu-lts-kernel-to-newer

我下载了如下3个包:(版本号的第2位如果是偶数代表稳定版,基数代表开发版)
http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16.7-utopic/

升级后:
cyper@cyper-pc:~$ lsb_release -a && uname -r
Distributor ID: Ubuntu
Description: Ubuntu 12.04.4 LTS
Release: 12.04
Codename: precise
3.16.7-031607-generic
cyper@cyper-pc:~$ 



你可能感兴趣的:(ubuntu升级内核)