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

ubuntu驱动开发环境搭建之nfs

时间:2014-09-15 22:57:29      阅读:466      评论:0      收藏:0      [点我收藏+]

标签:ubuntu   nfs   server   kernel   嵌入式   

安装nfs:

#sudo apt-get install nfs-kernel-server

(1)设置共享目录
运行命令
#gedit /etc/exports
编辑 nfs 服务的配置文件(注意:第一次打开时该文件是空的),添加以下内容:
/opt/FriendlyARM/mini2440/rootfs_qtopia_qt4 *(rw,sync,no_root_squash)
其中:
/opt/FriendlyARM/mini2440/rootfs_qtopia_qt4 表示 nfs 共享目录,
它可以作为开发板
的根文件系统通过 nfs 挂接;
* 表示所有的客户机都可以挂接此目录
rw 表示挂接此目录的客户机对该目录有读写的权力
no_root_squash 表示允许挂接此目录的客户机享有该主机的 root 身份

(2)重启服务:
#sudo /etc/init.d/portmap restart                    重启portmap,
#sudo /etc/init.d/nfs-kernel-server restart      重启nfs服务
#showmount -e                                             
显示共享出的目录

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

命令执行情况如下:

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


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

kevin@ubuntu:~$showmount -e
Export list for xgc-VirtualBox:
/home/kevin *

 

现在可以在本机上试一下:
#sudo mount -t nfs localhost:/opt/FriendlyARM/mini2440/rootfs_qtopia_qt4/mnt/

注:localhost为本机linux的IP地址

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

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

我在开发板上使用的挂载命令:

mount -t nfs -o nolock 192.168.1.102:/opt/FriendlyARM/mini2440/rootfs_qtopia_qt4/mnt/

ubuntu驱动开发环境搭建之nfs

标签:ubuntu   nfs   server   kernel   嵌入式   

原文地址:http://blog.csdn.net/muyang_ren/article/details/39298553

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