ubuntu 14.04配置 nfs

前端之家收集整理的这篇文章主要介绍了ubuntu 14.04配置 nfs前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 配置 nfs server

sudo apt-get install nfs-kernel-server

sudo vi /etc/exports 配置nfs。
添加:

/home/song/nfs *(rw,sync,no_root_squash,no_subtree_check)

/home/song/nfs 为要配置的目录

重启服务

sudo /etc/init.d/rpcbind restart            # 重启rpcbind
sudo /etc/init.d/nfs-kernel-server restart  # 重启nfs

查看本机共享文件

showmount -e 127.0.0.1

2. nfs client

安装

sudo apt-get install  nfs-common

查看服务端共享文件

showmount -e 192.168.1.122

挂载

sudo mount -t nfs 192.168.1.122:/home/share/nfs /mnt
原文链接:https://www.f2er.com/ubuntu/355398.html

猜你在找的Ubuntu相关文章