标签:支持 file time 目录 ice 系统 led nfs-utils 配置
NFS,是Network File System的简写,即网络文件系统。网络文件系统是FreeBSD支持的文件系统中的一种,也被称为NFS. NFS允许一个系统在网络上与他人共享目录和文件。通过使用NFS,用户和程序可以像访问本地文件一样访问远端系统上的文件。
模式: C/S 模式
端口:
RHEL6是以NFSv4作为默认版本,NFSv4使用TCP协议(端口号是2049)和NFS服务器建立连接
安装NFS软件包
[root@xue63 ~]#rpm -vih /mnt/Packages/nfs-utils-1.2.3-15.el6.x86_64.rpm
yum -y install nfs-utils
安装客户端:
命令:mount showmount
配置文件位置:
[root@xue63 ~]# ls /etc/exports
先查看2049端口是否开放:
[root@xue63 ~]#netstat -anutp | grep 2049
[root@xue63 ~]# service nfs start
Startingntpd: [ OK ]
[root@xue63 ~]# chkconfig nfs on
再查看:
[root@xue63 ~]#netstat -anutp | grep 2049
查看nfs服务:
showmount -e NFSIP
例:
[root@xuegod64 ~]#showmount -e 192.168.1.63
挂载:
mount 192.168.1.63:/tmp/a /mnt
[root@xuegod64 ~]#touch /tmp/a/nfs/b.txt
只要使用到/tmp/a/nfs目录,就会自动挂载
标签:支持 file time 目录 ice 系统 led nfs-utils 配置
原文地址:https://www.cnblogs.com/yingp/p/11874756.html