CentOS release 6.2 共享文件夹

服务端:(192.168.1.2)
service rpcbind start (有些版本可能要portmap 或portreserve)

vi /etc/exports (特殊需求的配置,baidu一下就知道了)
/home/share 192.168.1.3(rw,sync,no_root_squash)

如果没有安装nfs(yum install nfs-utils)
service nfs restart

客户端:(192.168.1.3)
如果没有安装nfs(yum install nfs-utils)
mkdir /home/client
mount -t nfs 192.168.1.2:/home/share /home/client

搞定! 

你可能感兴趣的:(centos)