SuperLinux Encyclopedia - Troubleshooting


Also see Support and Debugging

Also see, of course, the category for the problem. For instance, the "memory" page has some info on testing memory.

Misc:


Troubleshooting mysterious X or OS crashes:

Usually, these problems are related to broken hardware and most tips below are related to that, but another problem which should be considered is an X server which doesn't correctly support the video hardware. X servers are very complex and often contain a few bugs, especially for recently released hardware. Crashes or hangups of X servers often disable the keyboard and appear to be a problem with the basic OS (ie, the kernel).


Kernel Panic:

From Usenet (edited):
> kernel panic: VFS: Unable to mount root fs on 3:01

> What is VFS and 3:01?   Can someone guess what I did wrong to 

Kernel's Virtual File System is unable to mount /dev/hda1 at "/".

You can find out what the 3:01 by using "ls -l /dev":

brw-rw----   1 root     disk       3,   1 May  5  1998 /dev/hda1

You can see there the numbers 3 and 1. The 3 is major number
of device, and 1 is minor number. It doesn't matter what
the device is called (hda1 in this case). Kernel uses those
numbers to find out what the device really is.

Last Modified 25-Jan-1999

End of page.