ASUS M2A-VM
Aus Gentoo Linux Wiki
Dieser Artikel beschreibt die Einrichtung von Gentoo Linux auf einem ASUS M2A-VM Mainboard.
Diese Seite dient als Übersicht zur Einrichtung und verweist für die einzelnen Geräte auf die passende Anleitung, die die notwendige Installation und Konfiguration im Einzelnen beschreibt.
[Bearbeiten] Hardware
| Typ | Gerät | Modell | Status | Treiber | Hinweis |
|---|---|---|---|---|---|
| Prozessor | Prozessor | Sockel AM2: AMD Athlon 64, 64 FX und 64 X2 | | AMD Athlon 64 | |
| Chipsatz | Chipsatz | AMD 690G, ATI SB600 | | ||
| Laufwerke | SATA | AMD SB600 | | ahci | |
| IDE | AMD SB600 | | pata_atiixp | ||
| Grafikkarte | Chipsatz-Grafik | ATI Radeon X1250 | | radeon | |
| Netzwerk | Netzwerkkarte | Realtek RTL8111/8168B | | r8169 | |
| Sound | ALSA | AMD SB600 Azalia HDA, Realtek ALC883 Codec | | snd-hda-intel | |
| Anschlüsse | USB | USB 1.1, USB 2.0 | | ohci, ehci | |
| PS/2 | | evdev | |||
| Seriell | | Serieller Anschluss | |||
| Parallel | | Paralleler Anschluss | |||
| Sonstige | ACPI | | ACPI | ||
| Sensoren | ITE IT87xx | | it87 | Siehe unten |
[Bearbeiten] Hinweise
[Bearbeiten] Sensoren
Hier die Anpassungen meiner /etc/conf.d/lm-sensors:
| Datei: /etc/conf.d/lm-sensors |
# Initialize sensors at startup INITSENSORS=yes MODULE_0=k8temp MODULE_1=it87 |
Einige der Sensordaten (-5V, -12V, CPU Temp und M/B Temp) sind falsch belegt, so dass in der /etc/sensor.conf korregiert werden müssen:
| Datei: /etc/sensor.conf |
#### Here begins the real configuration file
chip "it8716-*"
ignore in2
ignore in5
ignore in6
# Voltages
label in0 "VCore"
label in1 "VDDR"
label in2 "+3.3V" # VCC3
label in3 "+5V" # VCC
label in4 "+12V"
# label in5 "-12V"
# label in6 "-5V"
label in7 "5VSB" # VCCH
label in8 "VBat"
compute in3 ((6.8/10)+1)*@ , @/((6.8/10)+1)
compute in4 ((30/10)+1)*@ , @/((30/10)+1)
# compute in5 (1+232/56)*@ - 4.096*232/56 , (@ + 4.096*232/56)/(1+232/56)
# compute in6 (1+120/56)*@ - 4.096*120/56 , (@ + 4.096*120/56)/(1+120/56)
compute in7 ((6.8/10)+1)*@ , @/((6.8/10)+1)
Und weiter unten:
label temp1 "CPU Temp"
label temp2 "M/B Temp"
# ignore temp3
# set temp1_over 60
# set temp1_low 10
# set temp2_over 50
# set temp2_low 10
# Fans
# The CPU fan can be any of fan1, fan2 or fan3 - it's motherboard
# dependent. Same for the case fan.
ignore fan2
label fan1 "CPU Fan"
# label fan2 "Case Fan"
|