ubuntu下搭建nfs服务

  1. 安装 NFS 软件包
sudo apt-get install nfs-kernel-server  # 安装 NFS服务器端
sudo apt-get install nfs-common         # 安装 NFS客户端
  1. 添加 NFS 共享目录
sudo vim /etc/exports
// 把 “/nfsroot” 目录设置为 NFS 共享目录
/nfsroot *(rw,sync,no_root_squash)     
//# * 表示允许任何网段 IP 的系统访问该 NFS 目录
  1. 启动 NFS 服务
sudo /etc/init.d/nfs-kernel-server start   
sudo /etc/init.d/nfs-kernel-server restart
  1. 测试 NFS 服务器
// 挂载
sudo mount -t nfs 192.168.12.123:/nfsroot /mnt -o nolock
// 取消挂载
umount /mnt
- 注意:在 mount 与 umount(解除挂载)操作时,用户的当前路径不能是操作的目标路径。

你可能感兴趣的:(ubuntu下搭建nfs服务)