Build:Tutorial:Configuring a RHEL System: Difference between revisions

No edit summary
 
(5 intermediate revisions by one other user not shown)
Line 70: Line 70:


# The system will present you with a login screen.  Login using the user account information you entered at the System User screen.
# The system will present you with a login screen.  Login using the user account information you entered at the System User screen.
# Click the up2date icon in the lower right portion of the screen.
# Configure the Red Hat Network Alert Notification Tool.
# At the first Red Hat Network Alert Notification Tool screen click Forward.
## Click the up2date icon in the lower right portion of the screen.
# At the Terms of Service screen click Forward.
## At the first Red Hat Network Alert Notification Tool screen click Forward.
# Ensure the proper configuration is present in the Proxy Configuration screen and click Forward.
## At the Terms of Service screen click Forward.
# At the Configuration Complete screen click Apply.
## Ensure the proper configuration is present in the Proxy Configuration screen and click Forward.
## At the Configuration Complete screen click Apply.
# Click the up2date icon in the lower right portion of the screen.
# Click the up2date icon in the lower right portion of the screen.
# In the Red Hat Network Alert Notification Tool click the "Launch up2date..." button.
# In the Red Hat Network Alert Notification Tool click the "Launch up2date..." button.
Line 95: Line 96:


# Log in as root.
# Log in as root.
# Disable gpm, cups, and hpoj.
# Disable gpm, cups, atd, apmd, and hpoj:
#* for s in gpm cups hpoj; do service $s stop; chkconfig --del $s; done
<pre>for s in gpm cups atd, apmd, hpoj; do service $s stop; chkconfig --del $s; done</pre>


===Disable X===
===Disable X===
Line 135: Line 136:


===Finalize Network Settings===
===Finalize Network Settings===
Edit /etc/sysconfig/network to contain the expected fully-qualified hostname of the system.
<div class="example" title="/etc/sysconfig/network">
<pre class="code">
NETWORKING=yes
HOSTNAME=myhostname.mydomain
</pre>
</div>
Edit /etc/sysconfig/network-scripts/ifcfg-eth0 to contain the network configuration that will be used by this system.
<div class="example" title="/etc/sysconfig/network-scripts/ifcfg-eth0">
<pre class="code">
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=none
IPADDR=192.168.1.100
NETMASK=255.255.255.0
USERCTL=no
PEERDNS=no
GATEWAY=192.168.1.1
TYPE=Ethernet
NETWORK=192.168.1.0
BROADCAST=192.168.1.255
156

edits