现在的位置: 首页 > 综合 > 正文

network file system

2013年10月11日 ⁄ 综合 ⁄ 共 2048字 ⁄ 字号 评论关闭

 

ubuntu10.10 NFS配置

系统平台:VMWare 7 + ubuntu10.10

 

安装nfs:

#sudo apt-get install nfs-kernel-server

ubuntu10.10中的已经是最新版本了,无需安装

 

配置nfs:

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

/home/xjl *(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设定

命令执行情况如下:

xjl@xjl:~$ 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

 

 

xjl@xjl:~$ 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 ]

 

 

 

xjl@xjl:~$ showmount -e

Export list for xjl:

/home/xjl *

 

 

挂载nfs:

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

# mount -t nfs localhost:/home/xjl /mnt

注:localhost为本机linux的IP地址

 

开发板上测试:

#mount –t nfs –o intr,nolock,rsize=1024,wsize=1024 192.168.2.62:/ /mnt

 

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

#umount /mnt

 

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

 

在开发板上配置IP如下:

ifconfig lo 127.0.0.1

ifconfig eth0 192.168.2.222

在开发板上使用mount如下:

mount -t nfs -o intr,nolock,rsize=1024,wsize=1024 192.168.2.64:/ /mnt

在PC上的图形界面或者/etc/exports配置

/NFS/root(要共享的目录) 192.168.2.222(开发板的IP) (rw,sync,no_subtree_check,no_root_squash,nohide)

抱歉!评论已关闭.