页次: 1
我想把树莓派上插的硬盘通过nfs挂载到台式机上
树莓派装的ubuntu server for raspberrypi
树莓派上的硬盘挂载于/media/pi/wd,我按照archwiki,先将其mount --bind到/srv/nfs下
加入fstab
/media/pi/wd /srv/nfs none bind 0 0
然后编辑/etc/exports如下:
/srv/nfs 192.168.31.0/24(rw,sync,no_subtree_check,fsid=0,no_root_squash)
然后sudo exportfs -arv 和sudo service nfs-kernel-server restart
在台式机上执行showmount -e rpius:
Export list for rpius:
/srv/nfs 192.168.31.0/24
但是mount的时候不行:
$ sudo mount -t nfs4 rpius:/ /mnt/nfs -v
mount.nfs4: timeout set for Sun Oct 3 21:46:57 2021
mount.nfs4: trying text-based options 'vers=4.2,addr=192.168.31.102,clientaddr=192.168.31.234'
mount.nfs4: mount(2): Operation not permitted
mount.nfs4: Operation not permitted
我没有使用kerberos
软件版本都是最新的
求解
最近编辑记录 martinit (2021-10-03 21:50:55)
离线
好了解决了,权限问题,exports里边设置好anonuid和anongid就行了
离线
页次: 1