Q. I see few kernels while booting my Linux system. My question is on Linux how many kernel you can compile at the same time and how many Kernel you can load in Linux?
A. You can compile as many as kernel (or different version of same kernel with different features such as router or particular device driver) you want. You are limited by disk space only. However you can load only one kernel at a time on a physical system.
There exists a combination of hardware and software that allows you to load multiple Linux kernel using special technique called Virtualization. It is the technique of managing and presenting storage devices and resources functionally, regardless of their physical layout or location. For example XEN or Vmware software provides Virtualization facility to load multiple kernel and application on a single physical system.
🐧 5 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
The answer is not entirely correct.
You can run the Linux kernel as a program inside your currently running kernel. It requires some tweaking and compiling, but it is very much possible and it is not virtualisation
Andy,
Can you provide link to it.. so that I can update answer.
TIA
Seems my answer wasn’t entirely right either, turns out it *is* a form of virtualisation. Anyway the thing is called usermode linux and here’s more info about it http://user-mode-linux.sourceforge.net/
Yup, UML is virtualization only. Basically with server virtualization, one can create multiple virtual servers on a single physical server. Each virtual server has its own set of virtual hardware on which an operating system and application are loaded. Generally XEN and Vmware used but as you pointed out UML one of such solution. In short you cannot boot same version of kernel.
while making my LFS and moving from LFS to BLFS? i figured that? i can compile N-number of kernels and also load them. and andy _is_ right user-mode-linux can also be used to load a specific kernel, especially when you are playing with gcc optimisation and also when cross compiling kernel. the userspace and userland is chrooted and schrooted for smooth execution.