ubuntu nfs安装

35 篇文章 0 订阅
 

从网络上安装nfs
sudo aptitude install nfs-kernel-server

修改 nfs 配置文件/etc/exports,添加如下一行:
/home/whl *(rw,sync,no_root_squash)

第一个参数是你要让客户机访问的目录,第二个是你允许的主机  IP,最后的()内是访问控制方式
表示所有的客户机都可以挂接此目录
rw  表示挂接此目录的客户机对该目录有读写的权力
no_root_squash  表示允许挂接此目录的客户机享有该主机的 root 身份在主机上启动 NFS 服务

测试配置文件
$ sudo   exportfs   -r

启动nfs:
$sudo /etc/init.d/portmap start
$sudo /etc/init.d/nfs-kernel-server start      [另外两个有用的参数是 stop,restart]


从开发板上挂载主机:
mount -t nfs -o nolock 192.168.0.231:/home/whl /mnt

 

 

Ubuntu 10.10 NFS配置

  系统平台:virtualbox3.2.10+Ubuntu 10.10

  安装nfs:

  #sudo apt-get install nfs-kernel-server

  Ubuntu 10.10中的已经是最新版本了,无需安装

  打开/etc/exports文件,在末尾加入:

  /home/xgc *(rw,sync,no_root_squash)

  注:nfs允许挂载的目录及权限,在文件/etc/exports中进行定义, 各字段含义如下:

  /home/xgc:要共享的目录

  * :允许所有的网段访问

  rw :读写权限

  sync:资料同步写入内在和硬盘

  no_root_squash:nfs客户端共享目录使用者权限

  重启服务:

  #sudo /etc/init.d/portmap restart <---重启portmap,很重要

  #sudo /etc/init.d/nfs-kernel-server restart <---重启nfs服务

  #showmount -e <---显示共享出的目录

  注:nfs是一个RPC程序,使用它前,需要映射好端口,通过portmap设定

  命令执行情况如下:

  xgc@xgc-VirtualBox:~$ sudo /etc/init.d/portmap restart

  Rather than invoking init scripts through /etc/init.d, use the service(8)

  utility, e.g. service portmap restart

  Since the script you are attempting to invoke has been converted to an

  Upstart job, you may also use the restart(8) utility, e.g. restart portmap

  portmap start/running, process 474

  xgc@xgc-VirtualBox:~$ sudo /etc/init.d/nfs-kernel-server restart

  * Stopping NFS kernel daemon [ OK ]

  * Unexporting directories for NFS kernel daemon... [ OK ]

  * Exporting directories for NFS kernel daemon...

  exportfs: /etc/exports [1]: Neither 'subtree_check' or 'no_subtree_check' specified for export "*:/home/xgc".

  Assuming default behaviour ('no_subtree_check').

  NOTE: this default has changed since nfs-utils version 1.0.x

  [ OK ]

  * Starting NFS kernel daemon [ OK ]

  xgc@xgc-VirtualBox:~$ showmount -e

  Export list for xgc-VirtualBox:

  /home/xgc *

  现在可以在本机上试一下:

  #sudo mount -t nfs localhost:/home/xgc /mnt

  注:localhost为本机linux的IP地址

  这样就把共享目录挂到了/mnt目录,取消挂载用:

  #sudo umount /mnt

  如果用在嵌入式设备上挂载,要加上参数-o nolock


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值