博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
how to compile and replace ubuntu kernel
阅读量:4955 次
发布时间:2019-06-12

本文共 811 字,大约阅读时间需要 2 分钟。

how to compile and replace ubuntu kernel

0. environment

  -ubuntu 1804 64bit 

 

1. prepare source code

  sudo apt-get install linux-source
  or
  wget https://git.kernel.org/torvalds/t/linux-4.17-rc2.tar.gz (replace to your version)

 

2. set up tools

  sudo apt-get install git fakeroot build-essential ncurses-dev xz-utils libssl-dev bc flex libelf-dev bison

 

3. tar xvzf linux-4.17-rc2.tar.gz (replace to your version)

 

4. cp /boot/config-$(uname -r) .config

 

5. make menuconfig (can be ignored)

 

6. make modules_install

 

7. sudo make install

 

8. sudo mkinitramfs -o /boot/initrd.img-4.15.18

9. sudo update-initramfs -c -k 4.15.18

10. sudo update-grub2

 

11. result 

 

reference

https://linux.cn/article-9665-1.html

https://blog.csdn.net/qq_36290650/article/details/83052315

转载于:https://www.cnblogs.com/pugang/p/11592372.html

你可能感兴趣的文章
c语言基础(一)
查看>>
Promise简单实现(正常思路版)
查看>>
EasyPlayerPro Windows播放器电子放大/局部放大播放功能实现
查看>>
JS操作iframe里的dom(转)
查看>>
简单演示如何从光盘启动救援模式
查看>>
s7-200 PID控位
查看>>
洛谷 P2680 运输计划-二分+树上差分(边权覆盖)
查看>>
oracle 查看后台正在执行的脚本
查看>>
hash poj3349
查看>>
爱好-文化-冢:象冢
查看>>
URLerror
查看>>
个人阅读作业2
查看>>
Aggressive cows 愤怒的牛 HYSBZ - 1734(题解)
查看>>
CodeForces 669D
查看>>
深入解析spring中用到的九种设计模式
查看>>
swoole之memoryGlobal内存池分析
查看>>
面试问题:Vuejs如何实现双向绑定
查看>>
Java8 list转map 坑
查看>>
调试VBS
查看>>
oracle返回结果集
查看>>