分类: LINUX
2017-06-13 12:17:12
#客户端和服务端都需要安装
wget -O /etc/yum.repos.d/CentOS-Base.repo
yum clean all
yum makecache
yum install nfs-utils -y
yum install rpcbind -y
chkconfig nfs on
chkconfig rpcbind on
rpcbind service rpcbind start
service nfs start
#编辑共享路径,允许挂载读写(服务端)
vim /etc/exports
/var/spool/asterisk/monitor 192.168.254.*(rw,sync,no_root_squash)