如何在 Ubuntu 20.04.2 上设置 NFS 服务器?

如何在 Ubuntu 20.04.2 上设置 NFS 服务器?

在 [master] 上:安装 NFS 服务器

> sudo apt-get install nfs-server
> sudo apt-get update
> sudo mkdir /mirror
> sudo gedit /etc/exports
> /mirror *(rw,sync)   // write this line inside the exports file.
> sudo service nfs-kernel-server restart

我收到此错误:

Failed to restart NFS Server. Unit NFS Server. Service not found.

我尝试了很多帮助文档,也尝试了不同的命令。这是一份家庭作业

答案1

显然,您需要在虚拟机上建立互联网连接才能执行导致错误的安装命令。

1-在虚拟机 ubuntu 设置中点击自动 dhcp

2-关闭虚拟机,右键点击设置->网络->选择简单NAT。完成

相关内容