Aqui estão linhas típicas em /etc/fstab
para um dispositivo de armazenamento em massa USB externo.
UUID="4E1AEA7B1AEA6007" /mnt/passport auto rw,user,noauto 0 0
Este é o meu disco rígido Passport USB. Observe a palavra-chave user
no quarto campo. Este campo (as opções de montagem associadas ao sistema de arquivos) informa ao sistema para permitir que os usuários montem e desmontem o dispositivo. Existem outras opções, mas o uso de user
é bastante comum e típico. O UUID
é obtido de blkid
e é um identificador para o dispositivo de armazenamento.
Para mais detalhes, consulte man mount
, especificamente a seção "As montagens não-superusuário". Isso diz:
The non-superuser mounts.
Normally, only the superuser can mount filesystems.
However, when fstab
contains the user option on a line, anybody can
mount the corresponding system.
Thus, given a line
/dev/cdrom /cd iso9660 ro,user,noauto,unhide
any user can mount the iso9660
filesystem found on his CDROM using
the command
mount /dev/cdrom
or
mount /cd
For more details, see fstab(5)
. Only the user that mounted a
filesystem can unmount it again. If any user should be able
to unmount, then use users instead of user in the fstab line.
The owner option is similar to the user option, with the restriction
that the user must be the owner of the special file. This may be
useful e.g. for /dev/fd
if a login script makes the console user
owner of this device. The group option is similar, with the
restriction that the user must be member of the group of the special
file.