《How can I use Kernel 3.19 in 14.04 now?》
URL:http://askubuntu.com/questions/598483/how-can-i-use-kernel-3-19-in-14-04-now
1.清除已下载的归档文件
apt-get -y clean
2.更新软件源的软件包列表
apt-get -y update
3.安装新版本内核
apt-get -y install linux-generic-lts-vivid
4.检查一下/boot/grub/grub.cfg启动配置文件中有无新内核的名字
grep 3.19 /boot/grub/grub.cfg || update-grub2
5.如果/boot/grub/grub.cfg启动配置文件中有新内核的名字,则重启系统
shutdown -r now
6.登录系统后,查看内核版本,确认版本是新的内核版本
uname -a
将原有的旧内核移除,为保证某些软件的安装使用不受影响可以保留部分旧内核以及相关文件,因此该步骤可作为可选步骤
1.查看当前系统中已有的旧内核
dpkg -l | grep kernel
2.从上述信息中找到旧的内核,比如linux-generic 3.13.0.32.38
apt-get -y remove linux-generic
tag:云主机升级内核,内核升级,Ubuntu内核升级,阿里云,update Ubuntu kernel 3.19
--end--
本文出自 “通信,我的最爱” 博客,请务必保留此出处http://dgd2010.blog.51cto.com/1539422/1744568
阿里云云主机Ubuntu14.04.2升级系统内核到3.19
原文:http://dgd2010.blog.51cto.com/1539422/1744568