The last two fields on each line in fstab
(dump
and pass
) are some numbers (usually, 0
).
What do these numbers mean?
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
UUID=030ccf66-5195-4835-ba3e-f5d7a5403c05 / ext4 errors=remount-ro 0 1
Copy/paste from
man fstab
:Simple blockhead answer is , first field determines if it should be dumped, second field determines if it should be checked during startup and in what sequence. Check the manual for the rest!