De acordo com man fstab
:
The sixth field (fs_passno). This field is used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time. The root filesystem should be specified with a fs_passno of 1, and other filesystems should have a fs_passno of 2. Filesystems within a drive will be checked sequentially, but filesystems on different drives will be checked at the same time to utilize parallelism available in the hardware. If the sixth field is not present or zero, a value of zero is returned and fsck will assume that the filesystem does not need to be checked.
Então, 3
é inválido. Além disso, o fstab
influencia apenas a verificação do tempo de inicialização, não toda vez que um dispositivo é montado. Portanto, para verificar durante a inicialização, altere o 6º campo para 2
. Se o seu quer fazer checar cada montaria você pode fazer isso por script simples ou até mesmo fazer alias (por exemplo
alias bk_mount='fsck -a UUID=c870ccb3-e472-4a3e-8e82-65f4fdb73b38 && \
mount /media/backup_disk_1'