>From 71c34b3a827deb9ca8cac1a272a2a1cbb2bdc54d Mon Sep 17 00:00:00 2001 From: James Rayner Date: Thu, 20 Dec 2007 23:23:19 +1100 Subject: [PATCH] tidy up rc.conf --- rc.conf | 35 +++++++++++++++++------------------ 1 files changed, 17 insertions(+), 18 deletions(-) diff --git a/rc.conf b/rc.conf index ed84064..aff95e5 100644 --- a/rc.conf +++ b/rc.conf @@ -2,7 +2,6 @@ # /etc/rc.conf - Main Configuration for Arch Linux # -# # ----------------------------------------------------------------------- # LOCALIZATION # ----------------------------------------------------------------------- @@ -23,30 +22,31 @@ CONSOLEFONT= CONSOLEMAP= USECOLOR="yes" -# + # ----------------------------------------------------------------------- # HARDWARE # ----------------------------------------------------------------------- # -# Scan hardware and load required modules at bootup +# MOD_AUTOLOAD: Scan hardware and load required modules at bootup +# MOD_BLACKLIST: Prevent udev from loading these modules +# MODULES: Modules to load at boot-up. Prefix with a ! to blacklist. +# MOD_AUTOLOAD="yes" -# Module Blacklist - modules in this list will never be loaded by udev MOD_BLACKLIST=() -# -# Modules to load at boot-up (in this order) -# - prefix a module with a ! to blacklist it -# MODULES=() -# Scan for LVM volume groups at startup, required if you use LVM + +# USELVM: Scan for LVM volume groups at startup, required if you use LVM USELVM="no" -# + # ----------------------------------------------------------------------- # NETWORKING # ----------------------------------------------------------------------- # -HOSTNAME="myhost" +# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts # +HOSTNAME="myhost" + # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available # interfaces. # @@ -54,14 +54,13 @@ HOSTNAME="myhost" # Declare each interface then list in INTERFACES # - prefix an entry in INTERFACES with a ! to disable it # - no hyphens in your interface names - Bash doesn't like it -# -# Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp") -# -# Don't use this for wireless interfaces, see network profiles below +# +# DHCP: Set your interface to "dhcp" (eth0="dhcp") +# Wireless: See network profiles below # eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255" INTERFACES=(eth0) -# + # Routes to start at boot-up (in this order) # Declare each route then list in ROUTES # - prefix an entry in ROUTES with a ! to disable it @@ -71,14 +70,14 @@ ROUTES=(!gateway) # To use network profiles, please install the 'netcfg' package # -# To to connect to networks on boot, define each in /etc/network.d +# To connect to networks on boot, define each in /etc/network.d # and then list in NETWORKS=() # - Set to NETWORKS=(menu) to present a menu during boot-up # - Prefix an entry with ! to disable it # NETWORKS=() -# + # ----------------------------------------------------------------------- # DAEMONS # ----------------------------------------------------------------------- -- 1.5.3.7