Created
January 22, 2017 15:21
-
-
Save zilongshanren/91f5e5f5d57dd1bc8d06fdd45526946b to your computer and use it in GitHub Desktop.
阿里云 Ubuntu 14.04 升级 Linux 内核到 4.9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. 下载 linux 4.9 debian 镜像 | |
``` | |
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.9.5/linux-image-4.9.5-040905-generic_4.9.5-040905.201701200532_amd64.deb | |
``` | |
2. 安装镜像 | |
``` | |
dpkg -i linux-image-4.9.5*.deb | |
``` | |
3. 更新引导 | |
``` | |
update-grub | |
reboot | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
如果 docker 起不来, 需要运行
rm -rf /var/lib/docker/aufs
因为 4.x 的内核不支持 aufs 了