Linux系统 NFS配置
NFS 网络文件系统,在系统运行等级为2的时候是不可以用NFS
查看系统运行等级
runlevel
NFS配置
1. Vi /etc/exports
写入配置
/home/test/ 192.168.0.*(rw,sync,no_root_squash)
/home/test/ 也称为服务器输出共享目录
192.168.0.* 表示允许访问NFS的IP地址,可用*代替192.168.0.*
rw表示读写
sync 表示数据同步写入内存和硬盘,也可用async 写入内存,而不立即写入硬盘
no_root_squash 表示NFS服务器共享目录用户的属性,如果用户是root,那么对这个目录来说就具有root权限
2. Chkconfig –-level 35 portmap on 在init运行等级3 和5 中,启动portmap
3. Chkconfig –-level 35 nfs on 在initiative运行等级3和5中,启动nfs
4. Service nfs restart 重新启动nfs服务
客户端映射:
Mount –t nfs 192.168.0.168:/home/test/ /mnt
或 mount –t nfs –o hard 192.168.0.168:/home/test/ /mnt
取消挂载 umount /mnt
或umount –a 取消所有已经挂载在mountain上的路径
Showmount –e 192.168.0.168 扫描主机192.168.0.168的nfs共享目录