Hi. To disable the Check you can use this command:
"tune2fs -c 0 /dev/sda*" -- or which ever partition your distro is located on. To do that type "fdisk -l"
I would not recommend turning it off completely, I'd say 15-30 days is good, so, for me I would type, " tune2fs -c 30 /dev/sda1"..
Also to know more about how to use the options you can use this command, "man tune2fs"..
I hope that helps!
Edit**
Additonally/optionally you could also edit /etc/fstab.
and look for a line similar to this
Code:
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda6 during installation
UUID=0000000-0000-0000-0000-00000000 / ext4 errors=remount-ro 0 1
where after remount-ro 0 1, you change the one to a zero to look like;
Code:
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda6 during installation
UUID=0000000-0000-0000-0000-00000000 / ext4 errors=remount-ro 0 0