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

mount -t nfs 的使用

时间:2014-09-13 14:30:25      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:使用   ar   文件   art   sp   c   服务器   r   res   

 

服务安装:
1. 在VMware Ubuntu中安装NFS服务:
  sudo apt-get install nfs-kernel-server
2. 安装成功会出现配置文件/etc/exports。
  ls /etc/exports
3. 配置vim exports

指定所要共享的目录(绝对路径) *(rw,sync,no_root_squash)
例:

添加:
/home/xubu/share/ *(rw,sync,no_root_squash,no_subtree_check)  //任意的客户端可连
/home/xubu/share/   192.168.1.1(rw,sync,no_root_squash,no_subtree_check) //指定的客户端可连

4. 重新启动nfs服务:
sudo service nfs-kernel-server restart

 

 

客户端接入:
1. 确保与服务器的网络连接正常
2. 挂载服务器的共享目录到本地目录
sudo mount -t nfs 192.168.1.200(服务器地址):/home/xubu/share   /mnt(共享到该目录)

 

mount -t nfs 的使用

标签:使用   ar   文件   art   sp   c   服务器   r   res   

原文地址:http://www.cnblogs.com/hdu-edu/p/3969748.html

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