fstab
fstab syntax
fstab syntax
device mount_point fs_type mount_opts dump_flag fsck_flag
dump_flag : backup utility will ignore this fs if 0
fsck_flag : order in which fs are checked at boot
fs opts
(1) concerne principalement les media amovibles, une erreur en résulterait si le média n'était pas en place au moment du boot.
(2) uniquement si le kernel est compilé avec l'option kernel automounter activée, concerne principalement les média amovibles.
UUIDs
UUIDs
ls -l /dev/disk/by-uuid/
Convertir la fstab avec des uuid
#!/usr/bin/perl while () { if ( /(\/dev\/sd[a-z]\d)\s(.*)/ ) { $uuid = `vol_id -u $1`; chomp($uuid); print "\n\n#$1 \nUUID=$uuid $2"; } else { print "$_"; } }