RaspberryPi如何通过NFS挂载Synology磁盘
确认Synology DiskStation已开启NFS服务
配置文件夹NFS权限
测试连通性时可以使用*通配符允许所有设备访问
确认RaspberryPi已安装NFS服务
1 |
apt install nfs-common |
挂载NFS磁盘
1 |
mount -t nfs -o proto=tcp,port=2049 your-nfs-server-ip-address:"/volume1/Volume 1" /mnt/your-local-mount-folder |
这里因为Mount路径中有空格,需要用引号。
如果显示如下报错信息,则一般是对应的路径NFS权限未设置正确
1 |
mount.nfs: access denied by server while mounting ... |
测试
1 |
df -kh |
如果一切正常,这里已经可以看到挂载的磁盘容量
There are no comments yet