Code: Select all
mount -o remount,rw /
emerge --unmerge dosfstoolsCode: Select all
emerge --unmerge dosfstoolsI had seen something about /fastboot on some other threads I saw. I'll give that a shot. I also thought that I might've left something in fstab to automatically mount, but it doesn't look like it:BillWho wrote:sporkbox
fsck checks for a file /fastboot and if it exists it will skip filesystem checking.
Not sure about dosfsck, but it might be worth a shot. You might have to boot a live media to create the file or try remounting rw
As far as I know, fsck looks at fstab to determine filesystems to check.
Code: Select all
# /etc/fstab: static file system information.
#
# noatime turns off atimes for increased performance (atimes normally aren't
# needed); notail increases performance of ReiserFS (at the expense of storage
# efficiency). It's safe to drop the noatime options if you want and to
# switch between notail / tail freely.
#
# The root filesystem should have a pass number of either 0 or 1.
# All other filesystems should have a pass number of 0 or greater than 1.
#
# See the manpage fstab(5) for more information.
#
# <fs> <mountpoint> <type> <opts> <dump/pass>
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
/dev/sda1 /boot ext2 noatime 1 2
/dev/sda2 / ext4 noatime 0 1
/dev/sda3 /home ext4 noatime 0 2
/dev/cdrom /media/dvd auto noauto,ro,user 0 0
/dev/sdb1 /mnt/win7 ntfs-3g noatime,noauto,user,rw,umask=0007,gid=100 0 2
/dev/disk/by-label/D2 /media/d2 vfat noatime,noauto,rw,user,umask=0007,gid=100 0 2
/dev/sd /media/sd auto noatime,noauto,rw,user 0 2
Change to/dev/sdb1 /mnt/win7 ntfs-3g noatime,noauto,user,rw,umask=0007,gid=100 0 2
/dev/disk/by-label/D2 /media/d2 vfat noatime,noauto,rw,user,umask=0007,gid=100 0 2
/dev/sd /media/sd auto noatime,noauto,rw,user 0 2
Code: Select all
/dev/sdb1 /mnt/win7 ntfs-3g noatime,noauto,user,rw,umask=0007,gid=100 0 0
/dev/disk/by-label/D2 /media/d2 vfat noatime,noauto,rw,user,umask=0007,gid=100 0 0
/dev/sd /media/sd auto noatime,noauto,rw,user 0 0
Yes, fastboot and /forcefsck ( which forces a check) will be removed...EDIT (Now on Gentoo): Is it normal for the /fastboot file to disappear after booting? It's no longer there. At any rate, I was able to unmerge dosfstools. I'll reboot and see if it fixed the problem.
Could you tell me what the difference is between 2 and 0 in the last field? Does changing them to zero simply disable them from automatic fsck'ing?BillWho wrote:Change to/dev/sdb1 /mnt/win7 ntfs-3g noatime,noauto,user,rw,umask=0007,gid=100 0 2
/dev/disk/by-label/D2 /media/d2 vfat noatime,noauto,rw,user,umask=0007,gid=100 0 2
/dev/sd /media/sd auto noatime,noauto,rw,user 0 2Code: Select all
/dev/sdb1 /mnt/win7 ntfs-3g noatime,noauto,user,rw,umask=0007,gid=100 0 0 /dev/disk/by-label/D2 /media/d2 vfat noatime,noauto,rw,user,umask=0007,gid=100 0 0 /dev/sd /media/sd auto noatime,noauto,rw,user 0 0