QNX ubuntu16.04 挂载NFS
2018-08-21 本文已影响0人
tianming1992
1.ubuntu安装nfs server
sudo apt-get install nfs-kernel-server
2.增加共享目录
sudo vim /etc/exports
添加
/home/path *(rw,sync,no_root_squash)
其中/home/path是待共享的路径
3.重启NFS服务
sudo systemctl restart nfs-kernel-server
4.在QNX上设置挂载NFS
fs-nfs3 192.168.10.45:/home/NFS /nfs
其中,192.168.10.45是server地址,/home/NFS时server上共享目录的路径,/nfs时qnx挂载路径。
注意ubuntu防火墙是否关闭。