NetBSD nfs 简单配置

      主要利用NetBSD自带的NFS服务器共享文件。
服务器:192.168.20.24 系统 NetBSD3.0
客户端:192.168.20.25 系统 NetBSD3.0
假如我想要将服务器端的/test目录共享给客户端
设置如下:
服务器端:
打开/etc/rc.conf 加入下列内容:
rpcbind=yes
mountd=yes
nfs_server=yes
lockd=yes
statd=yes
在/etc目录下面新建文件exports,加入内容如下:
/test 192.168.20.25
保存。
执行命令:
kill -HUP `cat /var/run/mountd.pid`
服务器端的配置即可。
客户端:
挂载目录即可:
mount 192.168.20.24:/test /mnt

你可能感兴趣的:(NetBSD nfs 简单配置)