开发板NFS挂载方法

开发板NFS挂载方法:
1  ubuntu nfs server配置
1.1 安装
sudo apt-get install nfs-kernel-server
1.2 配置
安装后会生成配置文件
sudo gedit /etc/exports 

增加一行配置,文件如下:
 sudo cat /etc/exports 
# /etc/exports: the access control list for filesystems which may be exported
#       to NFS clients.  See exports(5).
#
# Example for NFSv2 and NFSv3:
# /srv/homes       hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
#
# Example for NFSv4:
# /srv/nfs4        gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)
# /srv/nfs4/homes  gss/krb5i(rw,sync,no_subtree_check)
#

/home/work/share 192.168.1.*(rw,sync,no_root_squash)
重启nfs服务
sudo  /etc/init.d/nfs-kernel-server restart

1.3 开发板nfs client配置及操作
开发板只需按照如下指令mount就可以挂载
mount -t nfs -o nolock 192.168.1.200:/home/work/share/ /mnt/

你可能感兴趣的:(Linux常见问题记录)