Fedora22 设置nfs
Fedora22 设置nfs
操作方法
- 01
安装nfs服务和rpcbind 服务sudo dnf install rpcbindsudo dnf install nfs-utils
- 02
创建nfs server目录 用于放置被远程NFS访问的内容mkdir /opt/nfs
- 03
编辑/etc/exports 文件 编辑/etc/exports 文件,增加1个挂载点,内容如下:/opt/nfsroot *(rw,no_root_squash,no_all_squash)
- 04
启动rpcbind和 nfs 服务 开机启动: systemctl enable rpcbind.servicesystemctl enable nfs.service 手动启动:systemctl start rpcbind.servicesystemctl start nfs.service 如果已经启动 把start替换为restart
- 05
关闭防火墙 systemctl disable firewalld.service systemctl stop firewalld.service
- 06
远程mount mount -tnfs 192.168.0.100:/home/peak/src /usr/local/bin -onolock 如果出现连接拒绝,则需要添加-onolock
赞 (0)