QNX系统挂载NFS
Host系统配置(ubuntu-18.04)
安装nfs-kernel-server
sudo apt-get install nfs-kernel-server
配置/etc/exports
sudo vim /etc/exports
exports文件结构:
主机nfs共享目录 目标IP或hostname(共享选项)
Example
/opt/DataStore 10.1.0.0/21(ro,async,no_root_squash,no_subtree_check,insecure)
/opt/DataStore 192.168.0.0/22(rw,sync,no_root_squash,no_subtree_check,insecure)
第一个参数为主机的共享目录
第二个参数一般为ip/掩