Q. I am using Linux on HP server and I am getting error that read as follows:
Linux Kernel panic: VFS: Unable to mount root fs
How do I solve this problem?
A. Most modern distributions including Debian uses loadable kernel module for ext3 file system. So to read ext3/ext2 file system kernel must load ext3 kernel module (ext3.ko).
This module is included in an initrd image. If an initrd image is missing or that image does not include suitable kernel modules to access the ext3 filesystem on the partition, an error message (Linux Kernel panic: VFS: Unable to mount root fs) will be displayed to you.
To solve this problem you need to use mkinitrd script that constructs a directory structure that can serve as an initrd root file system.
The instructions for creating initrd images are here on our site.
- Email FAQ to a friend
- Printable version
- Rss Feed
- Last Updated: 3-13-08

{ 1 trackback }
{ 2 comments… read them below or add one }
Most modern distributions including Debian uses loadable kernel module for ext3 file system. So to read ext3/ext2 file system kernel must load ext3 kernel module (ext3.ko).
Would building ext2/ext3 into the kernel suffice? I have been trying to solve the problem by building everything needed for bootup into the kernel. If that is feasible in principle, how would I determine everything that needs to be built-in. This is on an Aspire 5720.
Please provide some knowledge about Linux “Kernel Panic error”