| Arch Linux Installation Guide |
|
|
| Written by axel | ||||||||||||||||||||||
12. Basic System Configuration
We choose Configure System.
At this point you will realize how simple is Arch from how its conf files are organized. Let’s start. - /etc/rc.conf
This is Arch’s basic conf file.
LOCALIZATION Part: LOCALE="en_US.utf8" HARDWARECLOCK="localtime" TIMEZONE="Europe/Athens" KEYMAP="us" HARDWARE Part: MOD_AUTOLOAD="yes" MOD_BLACKLIST=() USELVM="no"
MODULES=(powernow-k8 forcedeth r8169 sk98lin skge sky2)
- the kernel modules that will be loaded in the beginning
- nVidia nForce chipsets -> forcedeth You don’t have to add a new one, just select the order you want.
At this part you can choose the module for your cpu’s PowerSaving Governor (only if your processor supports power throttling. If you don’t have a processor like that ignore it).
Now we must find what is the name of the kernel module for our processor. The name will be different according to our cpu’s architecture. powernow-k8.ko while for core2 it is: acpi-cpufreq.ko
We note down the name without the dot and the suffix. (e.g. powernow-k8) MODULES=(powernow-k8 forcedeth r8169)
We continue with /etc/rc.conf
NETWORKING Part: HOSTNAME="neo"
lo="lo 127.0.0.1"
eth0="eth0 192.168.1.7 netmask 255.255.255.0 broadcast 192.168.1.255"
eth1="eth1 192.168.0.41 netmask 255.255.255.0 broadcast 192.168.0.255"
INTERFACES=(lo eth0)
INTERFACES=(lo eth0 eth1)
|
||||||||||||||||||||||
| Last Updated ( Monday, 01 December 2008 ) | ||||||||||||||||||||||
| < Prev | Next > |
|---|





