|
楼主 |
发表于 2006-9-22 12:24:04
|
显示全部楼层
按照四楼的建议,我又看了一下自己的 /etc/fstab 结果果真是如此,
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda8 / ext3 defaults,errors=remount-ro 0 1
/dev/hda1 /media/hda1 vfat defaults,utf8,umask=007,gid=46 0 1
/dev/hda3 /media/hda3 vfat defaults,utf8,umask=007,gid=46 0 1
/dev/hda4 /media/hda4 ext3 defaults 0 2
/dev/hda5 /media/hda5 vfat defaults,utf8,umask=007,gid=46 0 1
/dev/hda6 /media/hda6 vfat defaults,utf8,umask=007,gid=46 0 1
/dev/hda7 none swap sw 0 0
/dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0
~
~
原来是这样的
后来把VFAT的分区挂在后面的 1删除或者该成0 都可以把checking filesystem过滤掉 。
查看了一下 man fstab 得到下面的答案
The sixth field, (fs_passno), is used by the fsck(8) program to determine the order in which filesystem checks are
done at reboot time. The root filesystem should be specified with a fs_passno of 1, and other filesystems should
have a fs_passno of 2. Filesystems within a drive will be checked sequentially, but filesystems on different
drives will be checked at the same time to utilize parallelism available in the hardware. If the sixth field is
not present or zero, a value of zero is returned and fsck will assume that the filesystem does not need to be
checked.
OK,完美解决了 |
|