Linux下配置NFS(网络文件系统的配置,实现文件共享)
来源:岁月联盟
时间:2008-10-23
1.改写配置文件
#vi /etc/exports
#写上你的公享的文件路径
#例如
#/home 192.168.0 (rw)
#让192.168.0网段可以访问 /home 并有 读写权限
2.启动服务
#service portmap start
#service nfs start
Client:
#挂载目录
#mount -t nfs ip地址:/home /mnt