nfs
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nfs相关的知识,希望对你有一定的参考价值。
centos6.5 下的nfs
1、查看系统是否已安装NFS
rpm -qa |grep nfs
2、若没有安装:
yum install nfs* -y
4、服务器端使用showmount命令查询NFS的共享状态
[[email protected] centos1]# showmount -e
clnt_create: RPC: Unknown host
解决办法:
1 关掉iptables
2 vim /etc/hosts #添加IP 主机名
4、客户端使用showmount命令查询NFS的共享状态
格式:showmount -e NFS服务器IP
5、客户端挂载NFS服务器中的共享目录(建议客户端上来直接执行这一步)
格式:mount NFS服务器IP:共享目录 本地挂载点目录
mount -t nfs 192.168.221.140:/tmp /tmp/nfs
ubuntu 下的 nfs
1先安装
sudo apt-get install nfs-kernel-server
(安装nfs-kernel-server时,apt会自动安装nfs-common和portmap)
以上是关于nfs的主要内容,如果未能解决你的问题,请参考以下文章