Linux ~ NFS 文件共享

Ubuntu

下载nfs服务软件包

sudo apt-get install nfs-kernel-server

配置nfs

vim /etc/exports

Linux ~ NFS 文件共享_第1张图片

表头 表头
/mnt/* 指示要共享的目录
* 代表允许所有的网络段访问
rw 指示具有可读写的权限
sync 指示资料同步写入内存和硬盘
no_root_squash 客户端分享目录使用者的权限

启动rpcbind服务

sudo /etc/init.d/rpcbind restart

启动nfs服务

sudo /etc/init.d/nfs-kernel-server restart

验证nfs

showmount -e

挂在nfs

sudo mount -t nfs -o nfsvers=3,nolock 192.168.60.253:/mnt/Crucial/ZhongQiu /Users/zhongqiu/NFS

你可能感兴趣的:(Linux,linux,网络,服务器)