Difference between revisions of "Acer Aspire 1691 WLMi"
(→CPU Freq) |
(→ACPI) |
||
Line 32: | Line 32: | ||
# pacman -S acpid | # pacman -S acpid | ||
# /etc/rc.d/acpid start | # /etc/rc.d/acpid start | ||
− | Also add | + | Also add <tt>acpid</tt> to the DAEMONS line in you <tt>/etc/rc.conf</tt> (note that this is not necessary if you already have <tt>hal</tt> in there since <tt>acpid</tt> has been added to its starting script). |
− | I found out that when booted with ACPI on, the laptop makes kind of high frequency noise which can be really annoying when you work in otherwise quiet room. There is no such noise when you boot with acpi=off. I searched for a solution and I found this: | + | I found out that when booted with ACPI on, the laptop makes kind of high frequency noise which can be really annoying when you work in otherwise quiet room. There is no such noise when you boot with <tt>acpi=off</tt>. I searched for a solution and I found this: |
− | Pass this to the kernel by changing your /boot/grub/menu.lst (the whole entry should look something like this): | + | Pass this to the kernel by changing your <tt>/boot/grub/menu.lst</tt> (the whole entry should look something like this): |
title Arch Linux Beyond | title Arch Linux Beyond | ||
root (hd0,0) | root (hd0,0) |
Revision as of 01:56, 25 November 2006
.......
Contents
Hardware
Audio:
Video:
Modem:
Wired NIC:
Wireless NIC: Intel IPW 2200
Kernel
To get all the things working, use Beyond kernel...
Networking
Wired
Works fine using the tg3 module.
Wireless
My ipw2200 card works fine with the ipw2200 module.
Modem
....I don't use it...
Power Management
ACPI
Install ACPI daemon and start it.
# pacman -S acpid # /etc/rc.d/acpid start
Also add acpid to the DAEMONS line in you /etc/rc.conf (note that this is not necessary if you already have hal in there since acpid has been added to its starting script).
I found out that when booted with ACPI on, the laptop makes kind of high frequency noise which can be really annoying when you work in otherwise quiet room. There is no such noise when you boot with acpi=off. I searched for a solution and I found this:
Pass this to the kernel by changing your /boot/grub/menu.lst (the whole entry should look something like this):
title Arch Linux Beyond root (hd0,0) kernel /vmlinuz26beyond root=/dev/hda3 ro pci=bios idle=halt acpi_sleep=s3_bios initrd /kernel26beyond.img
Many thanks for the trick should go to andreas_mauser on ubuntu forums [1].
CPU frequency scaling
There are various ways how to do this (see e.g. SpeedStep), but I like this one:
Install cpufrequtils
# pacman -S cpufrequtils
Edit /etc/conf.d/cpufreq
#configuration for cpufreq control # valid governors: # ondemand, performance, powersave, # conservative, userspace governor="ondemand" # valid suffixes: Hz, kHz (default), MHz, GHz, THz min_freq="600Mhz" max_freq="1.5GHz"
Load the speedstep_centrino module using modprobe. Alternatively, you can add it to the MODULES list in /etc/rc.conf to load it at boot time. Don't forget to add cpufreq to the DAEMONS array.
DAEMONS=(syslog-ng @network netfs crond @hal fam @ifplugd cpufreq firestarter alsa gdm)
Xorg
synaptics touchpad... todo
Section "InputDevice" Identifier "Mouse1" Driver "synaptics" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "LeftEdge" "1700" Option "RightEdge" "5300" Option "TopEdge" "1700" Option "BottomEdge" "4200" Option "FingerLow" "25" Option "FingerHigh" "30" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "VertScrollDelta" "100" Option "MinSpeed" "0.06" Option "MaxSpeed" "0.12" Option "AccelFactor" "0.0010" Option "SHMConfig" "true" # Option "Repeater" "/dev/ps2mouse" EndSection
To use this you'll need to change your InputDevice line in your "ServerLayout" section to use the synaptics mouse....todo...
External Resources
...