1、cp /etc/apt/sources.list /etc/apt/sources.list.bak #備份sources.list 2、vi /etc/apt/sources.list #在sources.list最后一行寫入下面一行內容 deb http://security.ubuntu.com/ubuntu trusty-security main 3、apt-get update #訪問源列表里的每個網址,並讀取軟件列表,然后保存在本地 4、sudo apt-cache search linux-image #查詢列表中可更新的內核 5、apt-get install linux-image-extra-4.4.0-109-generic #安裝4.4版本內核 6、dpkg -l |grep linux-image #查看是否安裝成功 7、vim /etc/default/grub #進入grub文件, 將GRUB_DEFAULT=0修改為如下: GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 4.4.0-109-generic" 8、update-grub #更新grub引導 9、reboot #重啟系統 10、uname –a #查看內核是否更新