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.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 5 comments… read them below or add one }
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.