共计 1945 个字符,预计需要花费 5 分钟才能阅读完成。
(一)安装 NFS 服务器
1.1- 安装 Ubuntu nfs 服务器端:
sudo apt-get install nfs-kernel-server
1.2- 安装 nfs 的客户端:
sudo apt-get install nfs-common
(在安装 nsf-kernel-server 的时候,也会安装 nfs-commom。如果没有安装这个软件包,则要执行 1.2 中的命令了)
1.3- 设置共享的文件目录
sudo mkdir /***/***
(二)配置 NFS
2.1- 修改配置文件 /etc/exports
在最后一行添加:/home/USER/nfs *(rw,sync,no_root_squash,no_subtree_check)
前面那个目录是与 nfs 服务客户端共享的目录,* 代表允许所有的网段访问(也可以使用具体的 IP)
rw:挂接此目录的客户端对该共享目录具有读写权限
sync:资料同步写入内存和硬盘
no_root_squash:客户机用 root 访问该共享文件夹时,不映射 root 用户。(root_squash:客户机用 root 用户访问该共享文件夹时,将 root 用户映射成匿名用户)
no_subtree_check:不检查父目录的权限。
2.2-nfs 是一个 RPC 程序,使用它前,需要映射好端口,通过 rpcbind 设定:
sudo service rpcbind restart restart
2.3- 重启 nfs 服务:
sudo service restartnfs-kernel-server restart
2.4- 测试
运行以下命令来显示一下共享出来的目录:
showmount -e
(三)挂载指令
到任意一台服务器中执行挂载指令,则可以将指定 ip 服务器上的共享路径,挂载到本地。
sudo mount -t nfs ***.***.***.***:/home/USER/nfs /nfs-client/
***.***.***.*** 是 NFS 服务器的 IP 地址
如果想开机自动挂载:
把上述指令 sudo mount -t nfs ***.***.***.***:/home/USER/nfs /nfs-clinet/ 写到 /etc/rc.local 文件中。
(四)其它
客户端报错:
mount:文件系统类型错误、选项错误、***.***.***.***:/home/USER/nfs 有坏超级块,
缺少代码页或助手程序,或其他错误
(对某些文件系统(如 nfs、cifs) 您可能需要
一款 /sbin/mount.< 类型 > 助手程序)
有些情况下在 syslog 中可以找到一些有用信息 - 请尝试
dmesg | tail 这样的命令看看。
解决:
sudo apt-get install nfs-common
————————————– 分割线 ————————————–
Ubuntu 12.04 安装 NFS server http://www.linuxidc.com/Linux/2012-09/70728.htm
NFS 服务器安装配置实现 Ubuntu 12.04 与 ARM 文件共享 http://www.linuxidc.com/Linux/2012-10/73159.htm
Ubuntu 搭建 nfs 服务器 http://www.linuxidc.com/Linux/2012-10/71930.htm
文件服务器 NFS 配置详解 http://www.linuxidc.com/Linux/2013-06/86542.htm
Ubuntu 下搭建 NFS 网络文件系统服务器 http://www.linuxidc.com/Linux/2013-07/87367.htm
Heartbeat_ldirector+LB+NFS 实现 HA 及 LB、文件共享 http://www.linuxidc.com/Linux/2013-06/85292.htm
CentOS 5.5 配置 NFS 服务器教程 http://www.linuxidc.com/Linux/2013-03/81737.htm
Ubuntu 12.10 下 NFS 的安装使用 http://www.linuxidc.com/Linux/2013-03/80478.htm
————————————– 分割线 ————————————–
更多 Ubuntu 相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-04/129848.htm