Size: 2538
Comment:
|
← Revision 21 as of 2021-01-10 21:23:05 ⇥
Size: 5255
Comment: update indepth tutorial URL again
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
(These instructions assume we are installing version 2.6.0 of the kernel, replace all instances with the version you are trying to build. These instructions are also x86-specific; other architecture's build procedures may differ.) | |
Line 5: | Line 3: |
* Download your tarball from ftp.XX.kernel.org where XX is your country code. If there isn't a mirror for your country, just pick a near one. * Unpack the tarball in your home directory |
(Also see a working example of building a 3.3.6 Linux kernel in BuildLinux33). (The following instructions assume we are installing version 5.6.0 of the kernel; replace all instances with the version you are trying to build. These instructions are also x86-specific; other architecture's build procedures may differ.) * Download your tarball from the index page at http://kernel.org , which links to the latest versions. For other kernel versions, go to www.kernel.org/pub/linux/kernel/[version] -- where [version] is something like v3.x, v4.x, or v5.x. Kernel.org has almost-complete kernel archives back to version 0.99 if you're feeling really adventurous. If you know exactly which tarball you want to download, you can also use wget: |
Line 8: | Line 10: |
bzip2 -dc linux-2.6.0.tar.bz2 | tar xvf - | wget www.kernel.org/pub/linux/kernel/v5.x/linux-5.6.tar.xz |
Line 10: | Line 12: |
(Replace bzip2 with gzip if you downloaded the .gz) * cd into the linux directory. You'll now need to configure the kernel to select the features you want/need. There are several ways to do this.. |
|
Line 13: | Line 13: |
a. make config Command line questions. a. make oldconfig (Useful only if you kept a .config from a previous kernel build) a. make menuconfig (ncurses based) a. make gconfig (GTK+ based X-Windows configuration) a. make xconfig (QT based X-Windows configuration) |
* Unpack the tarball in your home directory. If you're planning to do a lot of compiling and installing kernels (and other good stuff), you may want to read the ''Note on /usr/src'' at the bottom of this page first. |
Line 25: | Line 15: |
* Now we can build the kernel (for older kernel like 2.4.x first build the dependencies with "make dep"). | {{{ tar xJf linux-5.6.0.tar.xz }}} (Replace xJf with xzf if you downloaded the .gz file.) * cd into the linux directory. You'll now need to configure the kernel to select the features you want/need. There are several ways to do this.. a. make config (There are hundreds of questions, so this isn't really a good idea.) Command line questions. a. make oldconfig (Useful only if you kept a .config from a previous kernel build. With the newest kernels, the .config of the currently-running kernel is used by default if it's available, so you usually won't need this feature.) a. make menuconfig or make nconfig (ncurses based) a. make gconfig (GTK+ based X-Windows configuration) a. make xconfig (QT based X-Windows configuration) * Now we can build the kernel (for older kernel like 2.4.x first build the dependencies with "make dep"). |
Line 30: | Line 39: |
* Wait. When its finished, it will have build both the kernel (bzImage) and the modules (for older kernels like 2.4.x, you need to run "make bzImage ; make modules"). * Become root to be able to install modules and kernel. Everything before this point can and should be done as a normal user, there is really no need to be root to compile a kernel. It's actually a very bad idea to do everything as root because root is too powerful, one single mistake is enough to ruin your system completely. * Install the modules. |
* Wait. When it's finished, it will have built both the kernel (bzImage) and the modules (for older kernels like 2.4.x, you need to run "make bzImage ; make modules"). * Become root to be able to install modules and kernel. Everything before this point can and should be done as a normal user; there is really no need to be root to compile a kernel. It's actually a very bad idea to do everything as root because root is too powerful; one single mistake is enough to ruin your system completely. * Install the modules. |
Line 37: | Line 47: |
* Install the new kernel.. | * Install the new kernel.. |
Line 39: | Line 50: |
cp arch/i386/boot/bzImage /boot/vmlinuz-2.6.0 cp System.map /boot/System.map-2.6.0 |
make install |
Line 43: | Line 53: |
* Edit /etc/lilo.conf, and add these lines... | If your distribution uses '''lilo''': * Edit /etc/lilo.conf, and add these lines... |
Line 45: | Line 58: |
image = /boot/vmlinuz-2.6.0 label = 2.6.0 |
image = /boot/vmlinuz-5.6.0 label = 5.6.0 |
Line 48: | Line 61: |
Also copy your root=/dev/??? line here too. | Also copy your root=/dev/??? line here too. * Run /sbin/lilo, reboot, and enjoy. If your distribution uses '''grub''': * Edit /boot/grub/grub.conf or /boot/grub2/grub.cfg: {{{ title=Linux 5.6.0 root (hd0,1) # or whatever your current root is kernel /boot/vmlinuz-5.6.0 root=/dev/hda1 # or whatever... }}} * If you're using Ubuntu, you might need to edit menu.lst or grub.cfg instead of grub.conf * If your menu.lst needs an initrd line, you can generate the necessary info by doing something like |
Line 51: | Line 79: |
* Run /sbin/lilo, reboot, and enjoy. If you get modversion problems (symbols ending in _Rxxxxxxxx), have a look at [http://www.tux.org/lkml/#s8-8 this question] in the linux-kernel mailing list FAQ to solve the problem. | update-initramfs -k 5.6.0 -c |
Line 53: | Line 81: |
Still not getting it? Try this [http://www.digitalhermit.com/linux/Kernel-Build-HOWTO.html more indepth tutorial] | update-initramfs seems to be the replacement for mkinitrd (which is mentioned in the "more indepth tutorial" mentioned below. * Most distributions have an installation routine that links a new ''/boot/vmlinuz-[version]'' to simply ''vmlinuz'', so you may want to add a stanza like this to grub.conf/grub.cfg: {{{ title=My very latest kernel install root (hd0,1) # or whatever your current root is kernel /boot/vmlinuz root=/dev/hda1 # or whatever... }}} This will let you boot fresh kernels for testing without constantly editing grub.conf. ''Note: This will work for lilo, too, but you still have to run /sbin/lilo after every install.'' Still not getting it? Try this [[https://linuxreviews.org/Kernel_Rebuild_Guide|more indepth tutorial]] |
Line 56: | Line 97: |
["CategoryFAQ"] | '''Note on /usr/src''' If you're just trying out this procedure, do the unpacking and building in your home directory as discussed above. In a professional environment, though, the source would be stored in /usr/src or /usr/local/src, where compiling would also be done. To allow this, and at the same time avoid becoming root for the entire procedure, use your favorite GNOME or KDE utilities to create a group "devel" (or "hack" or whatever) and add yourself to that group. Then change the group owner of /usr/src to the new group and grant write privileges to the group. That way you can unpack the kernel tarball into /usr/src (or whatever) and configure and build there without doing everything as root. Of course, you'll still need to ''sudo'' or become root when you install the new kernel and edit the lilo/grub configuration files. This will help keep the kernel source separate from your resume, diary, and jpegs of your Main Squeeze. ---- [[CategoryFAQ]] ---- [[CategoryFAQ]] |
How do I compile a kernel?
(Also see a working example of building a 3.3.6 Linux kernel in BuildLinux33).
(The following instructions assume we are installing version 5.6.0 of the kernel; replace all instances with the version you are trying to build. These instructions are also x86-specific; other architecture's build procedures may differ.)
Download your tarball from the index page at http://kernel.org , which links to the latest versions. For other kernel versions, go to www.kernel.org/pub/linux/kernel/[version] -- where [version] is something like v3.x, v4.x, or v5.x. Kernel.org has almost-complete kernel archives back to version 0.99 if you're feeling really adventurous. If you know exactly which tarball you want to download, you can also use wget:
wget www.kernel.org/pub/linux/kernel/v5.x/linux-5.6.tar.xz
Unpack the tarball in your home directory. If you're planning to do a lot of compiling and installing kernels (and other good stuff), you may want to read the Note on /usr/src at the bottom of this page first.
tar xJf linux-5.6.0.tar.xz
- (Replace xJf with xzf if you downloaded the .gz file.)
- cd into the linux directory. You'll now need to configure the kernel to select the features you want/need. There are several ways to do this..
- make config (There are hundreds of questions, so this isn't really a good idea.)
- Command line questions.
- make oldconfig
- (Useful only if you kept a .config from a previous kernel build. With the newest kernels, the .config of the currently-running kernel is used by default if it's available, so you usually won't need this feature.)
- make menuconfig or make nconfig
- (ncurses based)
- make gconfig
- (GTK+ based X-Windows configuration)
- make xconfig
- (QT based X-Windows configuration)
- make config (There are hundreds of questions, so this isn't really a good idea.)
- Now we can build the kernel (for older kernel like 2.4.x first build the dependencies with "make dep").
make
- Wait. When it's finished, it will have built both the kernel (bzImage) and the modules (for older kernels like 2.4.x, you need to run "make bzImage ; make modules").
- Become root to be able to install modules and kernel. Everything before this point can and should be done as a normal user; there is really no need to be root to compile a kernel. It's actually a very bad idea to do everything as root because root is too powerful; one single mistake is enough to ruin your system completely.
- Install the modules.
make modules_install
- Install the new kernel..
make install
If your distribution uses lilo:
- Edit /etc/lilo.conf, and add these lines...
image = /boot/vmlinuz-5.6.0 label = 5.6.0
- Also copy your root=/dev/??? line here too.
- Run /sbin/lilo, reboot, and enjoy.
If your distribution uses grub:
- Edit /boot/grub/grub.conf or /boot/grub2/grub.cfg:
title=Linux 5.6.0 root (hd0,1) # or whatever your current root is kernel /boot/vmlinuz-5.6.0 root=/dev/hda1 # or whatever...
- If you're using Ubuntu, you might need to edit menu.lst or grub.cfg instead of grub.conf
- If your menu.lst needs an initrd line, you can generate the necessary info by doing something like
- update-initramfs -k 5.6.0 -c
- update-initramfs seems to be the replacement for mkinitrd (which is mentioned in the "more indepth tutorial" mentioned below.
Most distributions have an installation routine that links a new /boot/vmlinuz-[version] to simply vmlinuz, so you may want to add a stanza like this to grub.conf/grub.cfg:
title=My very latest kernel install root (hd0,1) # or whatever your current root is kernel /boot/vmlinuz root=/dev/hda1 # or whatever...
- This will let you boot fresh kernels for testing without constantly editing grub.conf.
Note: This will work for lilo, too, but you still have to run /sbin/lilo after every install.
Still not getting it? Try this more indepth tutorial
Note on /usr/src
If you're just trying out this procedure, do the unpacking and building in your home directory as discussed above. In a professional environment, though, the source would be stored in /usr/src or /usr/local/src, where compiling would also be done. To allow this, and at the same time avoid becoming root for the entire procedure, use your favorite GNOME or KDE utilities to create a group "devel" (or "hack" or whatever) and add yourself to that group. Then change the group owner of /usr/src to the new group and grant write privileges to the group.
That way you can unpack the kernel tarball into /usr/src (or whatever) and configure and build there without doing everything as root. Of course, you'll still need to sudo or become root when you install the new kernel and edit the lilo/grub configuration files.
This will help keep the kernel source separate from your resume, diary, and jpegs of your Main Squeeze.