-
-f:
Causes everything to be done except for the actual system call; if it's not obvious, this ``fakes'' mounting the file system. This option is useful in conjunction with the -v flag to determine what the mount command is trying to do. It can also be used to add entries for devices that were mounted earlier with the -n option.
-n:
Mount without writing in /etc/mtab. This is necessary for example when /etc is on a read-only file system.
-s:
Tolerate sloppy mount options rather than failing. This will ignore mount options not supported by a filesystem type. Not all filesystems support this option. This option exists for support of the Linux autofs-based automounter.
Fonte: http://linux.about.com/od/commands/l/blcmdl8_mount.htm
-
Algumas opções do comando
-a : monta todos os sistemas de arquivos especificados no arquivo /etc/fstab.
-h ou --help : exibe as opções do comando.
-r : monta a partição somente para leitura.
-t tipo : especifica o tipo de sistema de arquivo que será montado como, por exemplo, ext, ext2, ext3, ext4, minix, msdos, nfs, ntfs, etc.
-v : lista o sistema de arquivo de cada dispositivo montado.
-w : monta a partição para leitura/gravação (é o padrão).
-V ou --version : exibe informações sobre o comando.
-
O linux é meio óbvio nas abreviações, e quando eu não sei vou pela associação. A questão quer específicar a participação, logo quer saber o tipo --> que me fez pensar em TYPE. Logo pensei no " -t "
-
Puro chute. Pensei em -t de type(tipo). Mas foi bola dentro.
Gabarito: E
-
Sintaxe Básica: mount -t type device dir
Exemplo:
mount -t nfs 10.160.200.205:/home/user/Bureau/example /home
Para colocar de forma permanente no /etc/fstab:
10.160.200.205:/home/user/Bureau/example /home nfs defaults 0 0
Fontes:
https://unix.stackexchange.com/questions/319848/nfs-mount-cant-find-file-in-etc-fstab
http://landoflinux.com/linux_fstab.html