Login as the local user created earlier. Configure the network interface settings for the DNS records you have obtained previously. Click the Fedora logo (ƒ) in the lower left-hand corner of the desktop to open the menu system (Kicker/Kickoff). Navigate to the Network Configuration applet as shown in the sequence below:
(ƒ) » Applications » Administration » Network Configuration
If you need to increase resolution to see the entire applet, you can do so here:
(ƒ) » Computer » System Settings » Display » Size
Double-click the correct interface under the Devices tab. Be sure to set Activate Device when computer starts
, Statically set IP addresses,
, and Primary DNS and Secondary DNS servers. When you are done, save your settings with File » Save. Logout of your session, and reboot.
Upon reboot, login again as the local user, and check your network settings from the shell:
(ƒ) » Applications » System » Terminal
Later on, you will want to run administrative commands from the shell using sudo. Now is a good time to configure for this, so type su in the Terminal to become root
and then edit the /etc/sudoers
file with the visudo command, adding a line like this (directly under a similar line for the root
user):
myuser ALL=(ALL) ALL
Save your changes and close the editor. Changes to this file should take effect immediately. Exit the root
shell and try the following command: sudo cat /etc/sudoers
. You will be prompted for your password and the contents of the /etc/sudoers
file should print to the screen.
It is important that the hostname command returns the fully qualified domain name (FQDN) for your system. Make sure the hostname
found in the following file is the correct one:
/etc/sysconfig/network/profiles/default/network
For extra certainty that the system will associate its FQDN with the DNS IP address, you can add a line (as shown below) to your /etc/hosts
file using the command sudo vi /etc/hosts
172.11.22.33 myhost.mydept.example.com myhost
Where the IP address is followed by the FQDN and then by the short version of the hostname
.
What you do not want is for your hostname
to appear on the same line as localhost
.