Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The process of installing a new Linux kernel in a Debian system

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "the process of installing the new Linux kernel in Debian system". In the actual case operation process, many people will encounter such difficulties. Next, let Xiaobian lead you to learn how to deal with these situations! I hope you can read carefully and learn something!

Download https://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.28.tar.bz2 and extract it to any directory, not necessarily in/usr/src.

Since I only needed a kernel source tree, I generated the configuration file using a simple make oldconfig

1. Generate config file

The code is as follows:

make oldconfig

Make oldconfig will prompt you incrementally with your existing configuration file, and finally use the system default value, that is, all the way to "enter", otherwise it may lead to some module dependencies, resulting in compilation failure.

2. Generating a compressed kernel image

The code is as follows:

make bzImage

This will generate a bzImage in the boot directory of your platform, such as my linux-2.6.28/arch/x86/boot/bzImage

3. compilation module

The code is as follows:

make modules

This is a very time-consuming step. Wait slowly.

4. Install kernel module

The code is as follows:

make modules_install

This creates the corresponding kernel version module in your/lib/modules/directory

5. install the kernel

The code is as follows:

make install

This will install our compiled kernel into the/boot directory

6. Create an initramfs file

The code is as follows:

update-initramfs -c -k 2.6.28

c for creating a new initramfs, k for specifying the kernel version

7. Update GRUB

The code is as follows:

update-grub

If not, you can manually repair/boot/grub/menu.lst. You can refer to the previous configuration file, just add the "title","root","kernel","initrd" fields. Note: update-grub Newly added kernel versions will appear before older versions.

8.reboot,enjoy it。

"The process of installing the new Linux kernel in Debian system" is introduced here. Thank you for reading it. If you want to know more about industry-related knowledge, you can pay attention to the website. Xiaobian will output more high-quality practical articles for everyone!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report