红联Linux门户
Linux帮助

Fedora22设置nfs

发布时间:2015-10-21 09:41:05来源:baidu作者:peakstar1

安装nfs服务和rpcbind 服务sudo dnf install rpcbindsudo dnf install nfs-utils


创建nfs server目录

用于放置被远程NFS访问的内容mkdir /opt/nfs


编辑/etc/exports 文件 编辑/etc/exports 文件,增加1个挂载点,内容如下:/opt/nfsroot *(rw,no_root_squash,no_all_squash)


启动rpcbind和 nfs 服务

开机启动:

systemctl enable rpcbind.servicesystemctl enable nfs.service

手动启动:systemctl start rpcbind.servicesystemctl start nfs.service

如果已经启动

把start替换为restart


关闭防火墙

systemctl disable firewalld.service

systemctl stop firewalld.service


远程mount

mount -tnfs 192.168.0.100:/home/peak/src /usr/local/bin -onolock

如果出现连接拒绝,则需要添加-onolock


Linux设置nfs共享目录:http://www.linuxdiyf.com/linux/14088.html

CentOS 6.5系统下实现NFS共享:http://www.linuxdiyf.com/linux/10599.html

SUSE Linux创建NFS共享文件夹:http://www.linuxdiyf.com/linux/10510.html

简单在Linux系统之间建立NFS共享:http://www.linuxdiyf.com/linux/6773.html

Ubuntu Linux通过NFS设置共享文件夹简单设置:http://www.linuxdiyf.com/linux/10826.html