[UP] store acer-lap-top-computer home conf, ion3, maildrop, pacman, rc.conf, mutt...
[arrow.git] / archlinux_conf / etc / rc.conf
blobe402c2cb3d915035535b028df2891f9405724460
2 # /etc/rc.conf - Main Configuration for Arch Linux
5 # -----------------------------------------------------------------------
6 # LOCALIZATION
7 # -----------------------------------------------------------------------
9 # LOCALE: available languages can be listed with the 'locale -a' command
10 # HARDWARECLOCK: set to "UTC" or "localtime"
11 # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
12 # TIMEZONE: timezones are found in /usr/share/zoneinfo
13 # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
14 # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
15 # CONSOLEMAP: found in /usr/share/kbd/consoletrans
16 # USECOLOR: use ANSI color sequences in startup messages
18 LOCALE="en_US.utf8"
19 HARDWARECLOCK="localtime"
20 USEDIRECTISA="no"
21 TIMEZONE="Asia/Shanghai"
22 KEYMAP="us"
23 CONSOLEFONT=
24 CONSOLEMAP=
25 USECOLOR="yes"
27 # -----------------------------------------------------------------------
28 # HARDWARE
29 # -----------------------------------------------------------------------
31 # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
32 # MOD_BLACKLIST: Prevent udev from loading these modules
33 # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
35 # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
37 MOD_AUTOLOAD="yes"
38 #MOD_BLACKLIST=() #deprecated
39 MODULES=(e100 eepro100 mii slhc ac97_bus snd-mixer-oss snd-pcm-oss snd-page-alloc snd-pcm snd-timer snd snd-ac97-codec snd-ali5451 soundcore)
41 # Scan for LVM volume groups at startup, required if you use LVM
42 USELVM="no"
44 # -----------------------------------------------------------------------
45 # NETWORKING
46 # -----------------------------------------------------------------------
48 # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
50 HOSTNAME="arrow"
52 # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
54 # Interfaces to start at boot-up (in this order)
55 # Declare each interface then list in INTERFACES
56 #   - prefix an entry in INTERFACES with a ! to disable it
57 #   - no hyphens in your interface names - Bash doesn't like it
58
59 # DHCP:     Set your interface to "dhcp" (eth0="dhcp")
60 # Wireless: See network profiles below
62 eth0="eth0 192.168.3.224 netmask 255.255.255.0 broadcast 192.168.3.255"
63 INTERFACES=(eth0)
65 # Routes to start at boot-up (in this order)
66 # Declare each route then list in ROUTES
67 #   - prefix an entry in ROUTES with a ! to disable it
69 gateway="default gw 192.168.3.225"
70 ROUTES=(gateway)
72 # Enable these network profiles at boot-up.  These are only useful
73 # if you happen to need multiple network configurations (ie, laptop users)
74 #   - set to 'menu' to present a menu during boot-up (dialog package required)
75 #   - prefix an entry with a ! to disable it
77 # Network profiles are found in /etc/network.d
79 # This now requires the netcfg package
81 #NETWORKS=(main)
83 # -----------------------------------------------------------------------
84 # DAEMONS
85 # -----------------------------------------------------------------------
87 # Daemons to start at boot-up (in this order)
88 #   - prefix a daemon with a ! to disable it
89 #   - prefix a daemon with a @ to start it up in the background
91 DAEMONS=(syslog-ng network netfs crond @alsa !vsftpd !httpd hal mysqld sshd authdaemond saslauthd fam courier-imap postfix lighttpd tftpd)