# # /etc/rc.conf - Main Configuration for Arch Linux # # See 'man 5 rc.conf' for more details # # ----------------------------------------------------------------------- # LOCALIZATION # ----------------------------------------------------------------------- # # LOCALE: available languages can be listed with the 'locale -a' command # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result # in the hardware clock being left untouched (useful for virtualization) # Note: Using "localtime" is discouraged, using "" makes hwclock fall back # to the value in /etc/adjfile # TIMEZONE: timezones are found in /usr/share/zoneinfo # Note: if unset, the value in /etc/localtime is used unchanged # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US) # CONSOLEMAP: found in /usr/share/kbd/consoletrans # KEYMAP: keymaps are found in /usr/share/kbd/keymaps # USECOLOR: use ANSI color sequences in startup messages # #LOCALE="en_US.UTF-8" #HARDWARECLOCK="UTC" #TIMEZONE="Canada/Pacific" #CONSOLEFONT="LatArCyrHeb-16" #CONSOLEMAP= #KEYMAP="no-latin1" #USECOLOR="yes" # ----------------------------------------------------------------------- # HARDWARE # ----------------------------------------------------------------------- # # Modules to load at boot-up. Prefix with a ! to blacklist. # #MODULES=() # Scan for FakeRAID (dmraid) Volumes at startup USEDMRAID="no" # Scan for LVM volume groups at startup, required if you use LVM USELVM="no" # ----------------------------------------------------------------------- # NETWORKING # ----------------------------------------------------------------------- # # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts # #HOSTNAME="localhost" # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces. # # Wired network setup # - interface: name of device (required) # - address: IP address (leave blank for DHCP) # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0) # - broadcast: broadcast address (ignored for DHCP) (optional) # - gateway: default route (ignored for DHCP) # # Static IP example # interface=eth0 # address=192.168.0.2 # netmask=255.255.255.0 # broadcast=192.168.0.255 # gateway=192.168.0.1 # # DHCP example # interface=eth0 # address= # netmask= # gateway= #interface= #address= #netmask= #broadcast= #gateway= # Setting this to "yes" will skip network shutdown. # This is required if your root device is on NFS. NETWORK_PERSIST="no" # ----------------------------------------------------------------------- # DAEMONS # ----------------------------------------------------------------------- # # Daemons to start at boot-up (in this order) # - prefix a daemon with a ! to disable it # - prefix a daemon with a @ to start it up in the background # # If you are sure nothing else touches your hardware clock (such as ntpd or # a dual-boot), you might want to enable 'hwclock'. Note that this will only # make a difference if the hwclock program has been calibrated correctly. # # If you use a network filesystem you should enable 'netfs'. # DAEMONS=(syslog-ng network crond)