==クライアントでのマウントポイントの作成==
===mDNSのインストール===
* *.localの名前解決
<pre>
ubuntu@nfs-client:~$ sudo apt install -y avahi-daemon
ubuntu@nfs-client:~$ sudo systemctl start avahi-daemon
ubuntu@nfs-client:~$ sudo systemctl enable avahi-daemon
ubuntu@nfs-client:~$ ping bombay.local
PING bombay.local (192.168.0.47) 56(84) bytes of data.
64 bytes from 192.168.0.47 (192.168.0.47): icmp_seq=1 ttl=64 time=2.31 ms
</pre>
===マウントポイントの作成===
<pre>
ubuntu@nfs-client:/$ sudo mkdir -p /nfs/general
ubuntu@nfs-client:/$ sudo mkdir -p /nfs/home
</pre>