Check disk na linux/Fedora:
- Zjistit verzi EXTx
# blkid | grep archive010
/dev/mapper/archive010: UUID="00000000-ac18-0104-0010-000000000000" TYPE="ext4"
- Na unmoutnutým diskem je možné pustit checkdisk přímo:
# fsck.ext4 -fDty /dev/mapper/archive010
- V případě problému s odmountováním (např se tváří jako used), lze načasovat auto check disku po startu:
# tune2fs -C 2 -c 1 /dev/mapper/archive010
-C mount-count
Set the number of times the filesystem has been mounted. If set to a greater value than the max-mount-counts parameter set by the -c option, e2fsck(8) will check the filesystem at the next reboot.)
kontrola nastavení:
# tune2fs -l /dev/mapper/archive010 | egrep -i 'mount count|check'
po naběhnutí je možno kontrolovat, zda je checkdisk spuštěný:
# ps -ef | grep e2fs
případně kontrola, jestli už je namountovaný:
# lsblk | grep archive010
- Disable auto checkdisku po startu (set maximal mount count to „-1“):
# tune2fs -c 0 -l /dev/mapper/archive010 | egrep -i 'mount count|check'
Setting maximal mount count to -1
Mount count: 1
Maximum mount count: -1
Last checked: Mon Jun 22 20:40:32 2020
Check interval: 0 (<none>)
-c max-mount-counts
Adjust the number of mounts after which the filesystem will be checked by e2fsck(8). If max-mount-counts is 0 or -1, the number of times the filesystem is mounted will be disregarded by e2fsck(8) and the kernel.