Hi. General question for the group... I was trying to set up /etc/fstab and I noticed that the file system entries all end in 0, to never fsck on boot. The guide I read suggested that / should be set to 1 and everything else to 2, so that fsck checks 1 first and then everything else simultaneously.
Here's what it looks like now (without my USB HD and SD card entries)
# UNCONFIGURED FSTAB FOR BASE SYSTEM
tmpfs /lib/init/rw tmpfs rw,nosuid,mode=0755 0 0
/proc /proc proc rw,noexec,nosuid,nodev 0 0
sysfs /sys sysfs rw,noexec,nosuid,nodev 0 0
varrun /var/run tmpfs rw,nosuid,mode=0755 0 0
varlock /var/lock tmpfs rw,noexec,nosuid,nodev,mode=1777 0 0
udev /dev tmpfs rw,mode=0755 0 0
tmpfs /dev/shm tmpfs rw,nosuid,nodev 0 0
devpts /dev/pts devpts rw,noexec,nosuid,gid=5,mode=620 0 0
rootfs / rootfs rw 0 0
tmpfs /var/cache/apt tmpfs defaults,noatime
1) Why is / set to never fsck?
2) Is there a reason I shouldn't change / to 1 and the others to 2 to check on boot as needed?
Thanks!
John