Linux 内核/更新
外观
大部分 Linux 系统发行版都会自动将内核更新为建议的已测试版本。如果您想要自行研究源代码副本、编译并运行,则可以手动进行。
下面是简短而快速的入门说明
git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git cd linux cp /boot/config-$(uname -r) .config # reuse current working config make olddefconfig # configure using current config and default options make sudo make modules_install install
其他用于配置的 make 目标
- menuconfig
- 需要 libncurses5-dev
- gconfig
- 需要 libglade2-dev
- xconfig
- 需要 libqt4-dev
📚 参考
💾 历史记录