嵌入式linux开发环境搭建(二)——NFS服务器的搭建
系统环境:Ubuntu 14.04 server amd64
apt-get install nfs-common nfs-kernel-server
/home/nfs 192.168.0.0/24(rw,sync,no_subtree_check)
/etc/init.d/nfs-kernel-server start
showmount -e localhost
mount -t nfs 127.0.0.1:/home/nfs /mnt
umount /mnt/
启动开发板,进入系统,配置好开发板的IP地址后,ping NFS服务器的IP,确保网络连通后用mount命令挂载NFS服务器的NFS目录。
mount -t nfs 192.168.1.3:/home/nfs /mnt -o nolock
如果在使用中需要增加新的NFS共享目录,直接修改/etc/exports文件即可。修改该文件后,可以不用重启NFS服务,用exportfs命令读取/etc/exports文件,重新共享输出。exportfs命令语法如下:
exportfs [-aruv]
选项说明:
-a:全部挂载(或卸载) /etc/exports的设置;
-r:重新挂载/etc/exports的设置;
-u:卸载某一个目录;
-v:在输出的时候,把共享目录显示出来。
本文出自 “天山老妖” 博客,请务必保留此出处http://9291927.blog.51cto.com/9281927/1783899
原文地址:http://9291927.blog.51cto.com/9281927/1783899