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

nfs服务器配置

时间:2015-07-28 15:59:27      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

1、建立共享文件夹
   mkdir /home/share
2、设置共享目录
vim /etc/exports
加入
/home/share *(sync,rw,no_root_squash)
3、使设置生效
exportfs -ra
4、检查共享目录设置是否生效
exportfs -v 或 showmonut -e

 

1、挂载
 monut -t nfs 192.168.0.19:/work/nfs_root /mnt/share  /*192.168.0.19 是挂载系统的ip*/
2、开机永久挂载
 vim /etc/fstab
加上
  192.168.0.19:/work/nfs_root /mnt/share nfs defaults 0 0
3、卸载
  unmonut /mnt/share
4、查看指定IP共享文件夹
  showmonut -e 192.168.0.19


在ubuntu中
  nfs在/etc/init.d/nfs-kernel-server

nfs服务器配置

标签:

原文地址:http://www.cnblogs.com/ldcb/p/4683070.html

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