Stavo leggendo questa domanda ma la risposta è per root
o sudo
profilo modalità.
Puoi vedere, usando il finder, qualcosa del tipo:
sh-3.2# ls -al /Volumes/
total 40
drwxr-xr-x@ 4 root wheel 136 Oct 19 02:55 .
drwxr-xr-x 28 root wheel 1020 Oct 15 23:51 ..
drwx------ 1 pepito staff 16384 Oct 19 02:56 HD710A
lrwxr-xr-x 1 root wheel 1 Oct 19 02:42 HDD -> /
sh-3.2#
smontaggio dell'unità ...
sh-3.2# ls -al /Volumes/
total 8
drwxr-xr-x@ 3 root wheel 102 Oct 19 03:08 .
drwxr-xr-x 28 root wheel 1020 Oct 15 23:51 ..
lrwxr-xr-x 1 root wheel 1 Oct 19 02:42 HDD -> /
sh-3.2# exit
exit
Da ora come utente normale (modalità non privilegiata).
$ mkdir /Volumes/HD710A
mkdir: /Volumes/HD710A: Permission denied
$
Sono costretto a utilizzare la modalità sudo
$ sudo mkdir /Volumes/HD710A
Password:
$ ls -al /Volumes/
total 8
drwxr-xr-x@ 4 root wheel 136 Oct 19 03:16 .
drwxr-xr-x 28 root wheel 1020 Oct 15 23:51 ..
drwxr-xr-x+ 2 root wheel 68 Oct 19 03:16 HD710A
lrwxr-xr-x 1 root wheel 1 Oct 19 02:42 HDD -> /
$
Andiamo a montare l'unità
$ mount -t afp afp://pepito:[email protected]/HD710A /Volumes/HD710A
mount_afp: AFPMountURL returned error 1, errno is 1
$
Ancora forzato l'utilizzo della modalità sudo
$ sudo mount -t afp afp://pepito:[email protected]/HD710A /Volumes/HD710A
$ ls -al /Volumes/
total 8
drwxr-xr-x@ 4 root wheel 136 Oct 19 03:16 .
drwxr-xr-x 28 root wheel 1020 Oct 15 23:51 ..
drwx------ 1 root wheel 1316 Oct 19 02:56 HD710A
lrwxr-xr-x 1 root wheel 1 Oct 19 02:42 HDD -> /
$ umount /Volumes/HD710A
umount: unmount(/Volumes/HD710A): Operation not permitted
$ sudo umount /Volumes/HD710A
$
Il problema quando l'unità è montata come root
o sudo
modalità di scrittura / lettura usando copy & le operazioni di incolla sono limitate da Finder .
Come montare come staff
in modo simile a fatto per / da Finder ?