ubuntn 安装nfs 服务(mount需要)

1.安装命令:

sudo apt-get install nfs-kernel-server

2.简单配置 

 vi /etc/exports 


3.重启服务 

service nfs-kernel-server restart 

4.验证 

mount -t nfs 192.168.1.27:/mnt  /mnt -o nolock

将server 192.168.1.27 的 /mnt 目录挂载在 当前设备的 /mnt 目录

=================================================================

扫描二维码关注公众号,回复: 2374822 查看本文章

查看配置是否生效:

exportfs -r  #更新配置
showmount -e
如果生效会显示
Export list for Ubuntu:

/mnt

======

附录:NFS常用参数如下:
ro 只读访问
rw 读写访问sync 所有数据在请求时写入共享
async nfs在写入数据前可以响应请求
secure nfs通过1024以下的安全TCP/IP端口发送
insecure nfs通过1024以上的端口发送
wdelay 如果多个用户要写入nfs目录,则归组写入(默认)
no_wdelay 如果多个用户要写入nfs目录,则立即写入,当使用async时,无需此设置。
hide 在nfs共享目录中不共享其子目录
no_hide 共享nfs目录的子目录
subtree_check 如果共享/usr/bin之类的子目录时,强制nfs检查父目录的权限(默认)
no_subtree_check 和上面相对,不检查父目录权限
all_squash 共享文件的UID和GID映射匿名用户anonymous,适合公用目录。
no_all_squash 保留共享文件的UID和GID(默认)
root_squash root用户的所有请求映射成如anonymous用户一样的权限(默认)
no_root_squas root用户具有根目录的完全管理访问权限
anonuid=xxx 指定nfs服务器/etc/passwd文件中匿名用户的UID
anongid=xxx 指定nfs服务器/etc/passwd文件中匿名用户的GID



猜你喜欢

转载自blog.csdn.net/onionnmmn/article/details/79791327