FSCK is running every boot on Ubuntu 16.04. How can I prevent this from happening? I've searched boot parameters and don't see any parameter setting this to be run on boot. Also, there is no /forcefsck file.
Asked
Active
Viewed 1.5k times
8
Thiago Rider Augusto
- 1,730
1 Answers
14
In /etc/fstab, for every entry, change the last parameter (a digit, usually 0, 1, or 2) to 0
1will run fsck first on this partition at boot2will run fsck next after1at boot0will not run fsck on boot
According to the fstab documentation:
Controls the order in which fsck checks the device/partition for errors at boot time. The root device should be 1. Other partitions should be 2, or 0 to disable checking.
AlwaysTalkingAboutMyDog
- 3,923