第1个回答 2017-03-28
1.配置编译工具
#apt-get install libncurses5-dev build-essential kernel-package
1
1
2.下载内核代码
因为kernel.org的代码和ubuntu内核的代码并不完全一致,所以直接从kernel.org下载下来的代码无法确保编译后可以成功运行于老的ubuntu平台,所以应该使用ubuntu的最新的内核代码
下载ubuntu最新的内核代码
#sudo apt-cache search linux-source
1
1
结果如下
Linux-source - Linux kernel source with Ubuntu patches
linux-source-4.4.0 - Linux kernel source for version 4.4.0 with Ubuntu patches
linux-source-4.8.0 - Linux kernel source for version 4.8.0 with Ubuntu patches
选择比较新的4.8的版本
#sudo apt-get install linux-source-4.8.0本回答被提问者采纳