CentOS 6.x配置NFS服务端并在Mac上挂载
服务端:
# 安装nfs yum install nfs-utils -y #CentOS 5.x还需要装yum install portmap -y # vi /etc/exports 填写共享信息 依次是文件夹 允许的ip 权限 /home/wwwroot 192.168.1.*(rw,sync,no_root_squash,no_all_squash,insecure) #启动 service rpcbind start service nfs start
客户端挂载:
#若服务端的ip为192.168.1.99 依次为共享目录 要挂在的目录 mount -t nfs 192.168.1.99:/home/wwwroot ./wwwroot