码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS NFS配置

时间:2014-11-30 16:40:21      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   os   sp   div   art   log   

1:
    vim /etc/exports
    
    /tftp *(rw,sync,no_root_squash)
    /home 192.168.1.*(rw,sync,no_root_squash)
    
    注释:
    /tftp           :    共享路径
    *或192.168.1.* :    允许访问的对象,*代表不限制
    rw           :    读写控制
    sync           :    客户端修改同步
    no_root_squash :    以root登陆享有的权限


2:
    /etc/init.d/nfs restart
  //最好关闭防火墙

3: 测试挂载
  mount -t nfs 192.168.1.117:/home/nfsroot /nfstest

4:   卸载
  umount /nfstest





  
 

 

CentOS NFS配置

标签:style   blog   ar   color   os   sp   div   art   log   

原文地址:http://www.cnblogs.com/wslbolg/p/4133192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!