ubuntu 16.04 编译安装4.4.30内核

来源:互联网 发布:js注释快捷键 编辑:程序博客网 时间:2024/05/18 15:06

ubuntu编译安装linux-4.4.30内核

1 clean

cd linux-4.4.30

make clean

rm -rf .config


2 configure

make localmodconfig  //使用/boot下的config再做精简(例如: /boot/config-4.4.30)

make menuconfig  //再选择自己需要的配置


3 make

make


4 install

make modules_install

make install


5 reboot

reboot
0 0