===== ネットワーク設定の変更 =====
インストールはdhcpで行なったが、サーバの運用は固定IPアドレスで行うのが普通。そこで固定IPアドレスを設定する。
最近のシステムではネットワークの設定は''/etc/network/interdaces''で行うのが一般的。インストールをdhcpで行なった場合、''/etc/network/interdaces''は
# The primary network interface
auto enp4s0f0
iface enp4s0f0 inet dhcp
などとなっている。これを
# The primary network interface
auto enp4s0f0
iface enp4s0f0 inet static
address 192.168.10.213
netmask 255.255.255.0
gateway 192.168.10.254
dns-nameservers 192.168.10.1
のように改める。