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,640
1 Answers
14
In /etc/fstab
, for every entry, change the last parameter (a digit, usually 0, 1, or 2) to 0
1
will run fsck first on this partition at boot2
will run fsck next after1
at boot0
will 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,783
- 2
- 25
- 38