Skip to content

40 ubuntu安装nfs服务

superxin edited this page Oct 17, 2018 · 1 revision

本文介绍如何在ubuntu 16安装nfs服务

安装 nfs server

sudo apt install nfs-kernel-server

安装好以后可以修改 /etc/exports 文件来配置服务,下面是一个示例

/data ip_or_hostname(rw,sync,no_root_squash,no_subtree_check)

ip可以用具体的ip地址,或者网段表示,hostname可以用通配符

修改好之后用如下命令更新:

sudo exportfs -arv

配置可以参考:

https://www.cnblogs.com/findumars/p/5385425.html

Clone this wiki locally