How can a linux kernel be so small?
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Flying Over Ancient Lands
--
Chapters
00:00 How Can A Linux Kernel Be So Small?
00:29 Accepted Answer Score 44
01:57 Answer 2 Score 22
02:41 Answer 3 Score 11
03:53 Answer 4 Score 3
04:39 Answer 5 Score 1
05:03 Thank you
--
Full question
https://superuser.com/questions/370586/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#linux #kernel
#avk47
ACCEPTED ANSWER
Score 44
Yes.
- If you strip them down (compile only modules for the things that you actually need.)
- Optimize the kernel for size (ie.: -Os)
- Compress the kernel (such as XZ.)
These "options" are all available in the standard kernel and you can do this at the configuration step. You don't need any kind of special tool.
Using those three things will result in such a small kernel. You can make even smaller ones, for a targeted system. Like I know my PC, I know my stuff. So I'll just compile what I need. Like my own SATA drivers, a driver for USB, etc. Nothing else. No webcam, no old IDE drives, nothing.
The bigger ones you encounter are the WHOLE kernel. They are compiled with the most generic options to be able to run on most hardware without issues and they contain almost every driver available as modules. These modules don't make the kernel slower speed-wise as the modules are loaded on-demand.
(There are 3 states for modules at the configuration stage:
[ ]
- Won't get compiled, won't be part of your kernel.
[M]
- Will be compiled as a module.
(You can modprobe it, or your system will auto-load it when it's needed.
Depends on the system, userland.)
[X]
- It'll be compiled into the kernel AND will be present - always.
Distros with small but still generic kernel:
ANSWER 2
Score 22
Early Linux distributions such as Tom's Root-Boot, MuLinux, Diet-router, (the now defunct) LOAF and many others now departed, all fit a working Linux system on one or two 1.44 MB diskettes.
The Linux kernel has grown but it is modular: kernel modules are loaded as needed. Thus it is still possible to produce a Linux distribution with a very small footprint.
See: Kernel Size Tuning Guide - eLinux.org
If you read Linux_tiny.pdf you will see this
- historic 0.99pl15 kernel: Slackware 1.1.2, 1994: 301K
- Fedora Core 2: 1.2M
- SuSE 9.1: 1.5M
- 2.6.5-tiny1 test config: IDE, ext2, TCP, NIC: 363K
ANSWER 3
Score 11
The default kernel configuration is configured to support as many hardware as possible. A non-stripped kernel with default configuration resulted in a size of 1897996 kB (including kernel + modules). When stripping many unnecessary drivers and options (why would I need a HP module if I own a Clevo notebook), it resulted in a size of 892892 kB which is a size reduction of 53% compared to the stock kernel.
When installing the kernel modules, append the INSTALL_MOD_STRIP=1
option. This will strip all debugging symbols and reduced the size by 92% for me (from 892892 kB to 69356 kB). Note this will only affects modules to be installed and not the kernel (vmlinuz) itself:
make INSTALL_MOD_STRIP=1 modules_install
From Documentation/kbuild/kbuild.txt:
INSTALL_MOD_STRIP
--------------------------------------------------
INSTALL_MOD_STRIP, if defined, will cause modules to be
stripped after they are installed. If INSTALL_MOD_STRIP is '1', then
the default option --strip-debug will be used. Otherwise,
INSTALL_MOD_STRIP value will be used as the options to the strip command.
ANSWER 4
Score 3
Most major distros configure their kernels with maximum hardware support so it will work out of the box with most computers and anything you plug in later on. They also use an initrd system which is not needed in most cases. There are also options in the kernel configuration that make the build process optimize for size, and a better (though slower) compression method can be selected as well. Lastly, if you are looking at the size of the kernel source code, keep in mind that it also includes support for several architectures beyond x86/amd64, network protocols, file systems, and other features that you'll probably never use and that can be disabled.
ANSWER 5
Score 1
It is quite simple, a minimal system just need bootloader + kernel though it is almost useless. Most of commands used everyday, are optional binary for the system, like sh, ls, etc. If you are interested in internals, Linux From Scratch! is a good start point.