Re: Computer Semi-Failure
Try running a more specific file system check.
fsck is a great program and it can run a nice safe file system check on almost any type of file system by running another file system checking program fro you.
If you have an ext2 or ext3 file system, fsck runs e2fsck for you, but unless you're specifying some options for fsck, it only runs e2fsck with generic options.
Why not try running e2fsck yourself, from a live cd, and give it some options that will let it actually fix something? 
First, from your live CD, run 'sudo fdisk -lu' to check which partition contains your Ubuntu operating system, 'sudo blkid' is also very good.
Then run something like: sudo e2fsck -C0 -p -f -v /dev/sda4
Code:
sudo e2fsck -C0 -p -f -v /dev/sda4
Where '/dev/sda2' is the partition containing the file system to be checked, otherwise, replace '/dev/sda4' with some other partition number as per your 'fdisk' output.
That runs a fairly safe and mild (but effective) file system check but which will probably fix it for you.
If it can't, it will report back to you and tell you why hot, and probably what to do next.
If that doesn't fix it look here for what other e2fsck commands to run next, (depending on what the error message you received after the first file system check), Running a filesystem check on an ext3 filesystem .
Regards, Herman
Last edited by Herman; November 23rd, 2008 at 08:49 PM.
Ubuntu user since 2004 (Warty Warthog)
Bookmarks