Question : Ubuntu 9.10 FileSystem Check 17%

Hi there;

I have Ubuntu 9.10 with various OSes in the grub bootloader. I have no problem with any OS, but while booting from Ubuntu, it stucks at FileSystem Check 17% and I can skip it by simply clicking ESC, so how can I eliminate or bypass that FileSystem Check in the boot of Ubuntu?

Best regards.

Answer : Ubuntu 9.10 FileSystem Check 17%


Yes, you perform this command on the shell. Do it on any ext3 filesystem on your machine. The /dev/sda1 was just an example.

# tune2fs -c 0 /dev/sda1
# tune2fs -c 0 /dev/sda2
# tune2fs -c 0 /dev/sda3 ... and so on.

The tune2fs does not cause data loss. If you want to feel safe, unmount the filesystem first and then do the tune2fs.

The filesystem has a superblock. In it, there is the filesystem state, last time it was mounted, etc. When the system is running there is data that the kernel must write from cache to the filesystem. When the system reboots by accident, the journal helps recover the filesystem to a consistent state for normal operation. Journaling is therefore a safety net against fileystem corruption. If you turn off the fielsystem check feature, you're taking chances that one day your filesystem will get corrupted and your data loss will not make you happy.

I encourage you to read the man pages.

http://linux.die.net/man/8/tune2fs

WARNING: Removing an external journal from a filesystem which was not cleanly unmounted without first replaying the external journal can result in severe data loss and filesystem corruption.

You have been warned.  
Random Solutions  
 
programming4us programming4us