NFS
原创
©著作权归作者所有:来自51CTO博客作者ghn1206的原创作品,请联系作者获取转载授权,否则将追究法律责任
NFS
在服务端(192.168.0.36)
在/etc/exports
/var/ftp/pub 192.168.0.0/255.255.255.0(sync)
在客户端(192.168.0.35)
showmount -e 192.168.0.36
mkdir /nsf
mount -t nfs 192.168.0.36:/var/ftp/pub/ /nsf
服务器端:
在/etc/exports
/etc/gao 192.168.0.0/255.255.255.0(rw,sync)
useradd -u 1000 hui
[root@station36 /]# chown -R hui:hui /etc/gao/
重启服务
[root@station36 /]# su - hui
[hui@station36 ~]$ cd /etc/gao/
[hui@station36 gao]$ ls
[hui@station36 gao]$ touch hui
[hui@station36 gao]$ ll
total 4
-rw-rw-r-- 1 hui hui 0 Feb 10 19:54 hui
客户端:
useradd -u 1000 na
umount /root/gao/
[root@station36 ~]# mount -t nfs 192.168.0.36:/etc/gao /root/gao/
[root@station36 ~]# cd /root/gao/
[root@station36 gao]# ll
total 4
-rw-rw-r-- 1 na na 0 Feb 10 2011 hui
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章