versuche mich von Mac OS aus auf eine Debian VM per NFS zu verbinden.
--
Ausgaben vom Client
Code: Alles auswählen
sudo mount -t nfs -o resvport,rw 192.168.178.14:/srv/nfsv4/data /Users/ich/data
mount_nfs: can't mount /srv/nfsv4/data from 192.168.178.14 onto /Users/ich/data: No such file or directory
mount: /Users/ich/data failed with 2
Code: Alles auswählen
ls -la /Users/ich/
total 88
drwxr-x---+ 26 ich staff 832 20 Dez 09:04 .
drwxr-xr-x 5 root admin 160 14 Dez 09:29 ..
...
drwxr-xr-x 2 ich staff 64 20 Dez 09:04 data
...
Code: Alles auswählen
showmount -e 192.168.178.14
Exports list on 192.168.178.14:
/srv/nfsv4/data 192.168.178.2/24
/srv/nfsv4 192.168.178.2/24
Code: Alles auswählen
id
uid=501(ich) gid=20(staff) groups=20(staff),12(everyone),61(localaccounts),79(_appserverusr),80(admin),81(_appserveradm),98(_lpadmin),33(_appstore),100(_lpoperator),204(_developer),250(_analyticsusers),395(com.apple.access_ftp),398(com.apple.access_screensharing),399(com.apple.access_ssh),400(com.apple.access_remote_ae),701(com.apple.sharepoint.group.1)
Ausgaben vom Host
Code: Alles auswählen
id
uid=1000 (ich) gid=1000(ich) Gruppen=1000(ich)
Code: Alles auswählen
cat /etc/exports
/srv/nfsv4 192.168.178.2/24(rw,sync,root_squash,no_subtree_check,fsid=0)
/srv/nfsv4/data 192.168.178.2/24(rw,sync,root_squash,no_subtree_check)
Ich kann mir vorstellen, dass die unterschiedlichen IDs Probleme machen.
Wer kann mir weiterhelfen?