After installing Ubuntu 16.04 LTS on AUBURN, there are three (3) outstanding issues:
According to IP Addressing and Name Resolution, the static IP address and DNS resolution for the ETH0 is fixed in the /etc/network/interfaces file.
The original contents of /etc/network/interfaces were:
# This file describes the network interfaces available on your system# and how to activate them. For more information, see interfaces(5).source /etc/network/interfaces.d/*# The loopback network interfaceauto loiface lo inet loopback# The primary network interfaceauto eth0iface eth0 inet dhcp The updated contents are (with changes in bold):
# This file describes the network interfaces available on your system# and how to activate them. For more information, see interfaces(5).source /etc/network/interfaces.d/*# The loopback network interfaceauto loiface lo inet loopback# The primary network interfaceauto eth0iface eth0 inet staticaddress 192.168.1.109netmask 255.255.255.0gateway 192.168.1.1dns-search yaocm.id.audns-nameservers 192.168.1.252 192.168.1.1These settings were updated with the following command:
sudo reboot
According to How do I change the computer name? [duplicate], the following files need to be updated:
/etc/hostname/etc/hostsThe original contents of /etc/hostname was:
auburn
This was changed to (with changes in bold):
auburn.yaocm.id.auThe original contents of /etc/hostname was:
127.0.0.1 localhost127.0.1.1 auburn# The following lines are desirable for IPv6 capable hosts::1 localhost ip6-localhost ip6-loopbackff02::1 ip6-allnodesff02::2 ip6-allroutersThis was changed to (with changes in bold):
127.0.0.1 localhost127.0.1.1 auburn.yaocm.id.au# The following lines are desirable for IPv6 capable hosts::1 localhost ip6-localhost ip6-loopbackff02::1 ip6-allnodesff02::2 ip6-allroutersThese settings were updated with the following command:
sudo reboot