mount -a não funciona, mas a montagem funciona manualmente

1

lsb_release & uname

[wellbye@AY130622174524343529Z:~]lsb_release -a 
LSB Version:    core-9.20160110ubuntu0.2-amd64:core-9.20160110ubuntu0.2-noarch:security-9.20160110ubuntu0.2-amd64:security-9.20160110ubuntu0.2-noarch 
Distributor ID: Ubuntu 
Description:    Ubuntu 16.04.3 
LTS Release:    16.04 
Codename:       xenial

[wellbye@AY130622174524343529Z:~]uname -a  
Linux AY130622174524343529Z 4.4.0-105-generic #128-Ubuntu SMP Thu Dec 14 12:42:11 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

/etc/fstab :

UUID=e2048966-750b-4795-a9a2-7b477d6681bf / ext4 errors=remount-ro 0 1     
/dev/xvdb1 /newdisk ext3 rw,user,noauto,exec,utf8 0 0

sudo mount -a não tem efeito nem erro, mas funciona manualmente:

 sudo mount -t auto /dev/xvdb1 /newdisk/

qual é o problema com fstab ?

    
por fatfatson 28.01.2018 / 15:09

2 respostas

13

Vejo que você tem o sinalizador noauto definido. Isso significa "não monte com o sinalizador -a"

De man 5 fstab

          noauto do not mount when "mount -a"  is  given  (e.g.,  at  boot
                 time)
    
por 28.01.2018 / 15:39
-1

Abaixo Deve ser o formato durante a montagem com o UUID

UUID=UUIDNUMBER /directory ext4 rw,user,exec 0 0
    
por 28.01.2018 / 15:48