Linux内核重新编译问题

时间:2015-09-19 18:20:00

标签: linux-kernel kernel ubuntu-15.04

我在我的ubuntu 15上成功重新编译并安装了linux kernel 4.2.0,我出于学习目的尝试在我的机器上安装另一个kernel 4.1.7。我按照完全相同的步骤重新编译并安装它。我成功重新编译kernel 4.1.7但是当我安装它并重新启动我的ubuntu并检查其中运行的内核时,它仍然显示4.2.0而不是4.1.7。

我的第二次装置会出现什么问题?

  

我重新编译并安装两个内核的过程是

 1. downloaded the kernel from kernel.org
 2. made the kernel directory in home and extract kernel.tar.xz there
 3. in terminal go to the kernel directory
 4. run this command sudo apt-get install gcc libncurses5-dev dpkg-dev
 5. make menuconfig
 6. saved the .config file with a different name i-e .config_aa
 7. mv .config_aa .config
 8. make -j 5 KDEB_PKGVERSION=1.RIBALINUX deb-dev
 9. sudo make install
 10. sudo reboot
 11. checked kernel version using uname -r

1 个答案:

答案 0 :(得分:1)

您需要在引导加载程序中选择加载内核。在Ubuntu上,它通常是GRUB2(tutorial)。

在某些手册中遗漏了这一步骤,因为人们通常打算使用较新的版本构建内核。安装后,首先安排最新的内核版本,默认加载。