Which utility would you use to change how often a filesystem check was performed over an EXT2 filesystem (without losing any data stored on that filesystem)?
A.
tune2fs
B.
mke2fs
C.
fixe2fs
D.
mod2fs
E.
fsck
Explanation:
fsck is used to check and optionally repair one or more Linux file systems. filesys can be a device name (e.g. /dev/hdc1, /dev/sdb2), a mount point (e.g. /, /usr,/home).Normally, the fsck program will try to run file systems on different physical disk drives in parallel to reduce total amount time to check all of the file systems
Right answer :
A.
tune2fs
A is correct
fsck is used to do the actual file system check, but tune2fs is used to modify the settings for a given file system, including how often the check was conducted.