Hi,
I would recomment not allow normal user to run fsck as it can damage your file system if run incorrectly, if you dont
have to do an fsck on your machine edit the /etc/fstab and you should see something similar to:
LABEL=/home /home ext2 defaults 1 2
Notice the two on the end change that to a 0 for it to skip the fsck scan.
LABEL=/home /home ext2 defaults 1 0
Main Topics
Browse All Topics





by: ravenplPosted on 2005-07-11 at 09:17:31ID: 14413706
What distro?
Once I had this same problem on my RH boxes, I developed 3 solutions:
- I edited /etc/rc.d/rc.sysinit script and added '-y' flag to the fsck (it always answers yes to the fsck questions)
- I removed root password (asterix in /etc/shadow entry). After that user just need to hit enter at boot prompt for root password (+ sudo as root access)
- changed filesystem to reiserfs ;)