Monte SMB / AFP 13.10

3

Eu não consigo fazer o Ubuntu montar um mac share via SMB ou AFP. Eu tentei o seguinte ...

AFP:

apt-get install afpfs-ng-utils
mount_afp afp://user:password@localip/share /mnt/share

Erro: "Não foi possível conectar, nunca recebi uma resposta para getstatus, Tempo limite da conexão esgotado". O que é estranho como eu posso acessar o compartilhamento muito bem via Mac.

SMB:

apt-get install cifs-utils
nano /etc/fstab
added the following line "//localip/share /mnt/share cifs username=user,password=pass,iocharset=utf8,sec=nltm 0 0"
mount -a

Erro:

root@Asrock:~# mount -a -vvv
mount: fstab path: "/etc/fstab"
mount: mtab path:  "/etc/mtab"
mount: lock path:  "/etc/mtab~"
mount: temp path:  "/etc/mtab.tmp"
mount: UID:        0
mount: eUID:       0
mount: spec:  "//10.0.1.3/NAS"
mount: node:  "/mnt/NAS"
mount: types: "cifs"
mount: opts:  "username=user,password=pass,iocharset=utf8,sec=nltm"
mount: external mount: argv[0] = "/sbin/mount.cifs"
mount: external mount: argv[1] = "//10.0.1.3/NAS"
mount: external mount: argv[2] = "/mnt/NAS"
mount: external mount: argv[3] = "-v"
mount: external mount: argv[4] = "-o"
mount: external mount: argv[5] = "rw,username=user,password=pass,iocharset=utf8,sec=nltm"
mount.cifs kernel mount options: ip=10.0.1.3,unc=\10.0.1.3\NAS,iocharset=utf8,sec=nltm,user=user,pass=*
mount error(22): Invalid argument
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

Eu realmente não me importo com o que ele usa. Eu só quero que ele funcione! Estou fazendo algo errado?

    
por Jeffery 27.10.2013 / 09:42

2 respostas

1

para mim funcionou sem sec=nltmssp :

//localip/share /mnt/share cifs username=user,password=xxx,nounix 0 0
    
por Cl3ar 28.03.2015 / 21:23
-1

Consegui que isso funcionasse com um fstab de

//localip/share /mnt/share cifs username=user,nounix,sec=nltmssp 0 0
    
por yargy yarg 18.11.2013 / 10:37