terça-feira, 29 de maio de 2007

Configurando scroll em mouse touchpad de notebook no Ubuntu 7.04

No meu Asus W5FM, usando Ubuntu 7.04, adicionei/alterei no /etc/X11/xorg.conf :

Section "InputDevice"
Identifier "Configured Mouse"
Driver "synaptics"
Option "SHMConfig" "on"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection


Reinicie o X (CTRL + ALT + Backspace). No prompt como root:

#apt-get install qsynaptic
#qsynaptic


Configure o mouse utilizando as janelas do qsynaptic ao seu gosto!

Configurando som em um Asus W5FM com Ubuntu 7.04

Para que o som funcione no notebook Asus W5FM, utilizando o Ubuntu 7.04 Feisty Fawn e o Alsa, adicione no /etc/modprobe.d/alsa-base a seguinte linha:

options snd-hda-intel model=3stack


Reinicie o Alsa. Se não funcionar, para que não precise reiniciar, entre com o seguinte comando como root:

# kill $(lsof -t /dev/dsp* /dev/audio* /dev/mixer* /dev/snd/*) ; sudo modprobe -r $(lsmod |grep ^snd |awk '{print $1}') && sudo modprobe snd-hda-codec && sudo modprobe snd-hda-intel model=3stack


Pronto! Quando eu conseguir fazer funcionar a câmera eu posto aqui! Se alguém souber como, poste um comentário. Volte sempre!

---

If you want your sound working in your notebook Asus W5FM, using Ubuntu 7.04 Feisty Fawn and Alsa, add this line on your /etc/modprobe.d/alsa-base :

options snd-hda-intel model=3stack


For no need to reboot, enter this on your prompt as root:

# kill $(lsof -t /dev/dsp* /dev/audio* /dev/mixer* /dev/snd/*) ; sudo modprobe -r $(lsmod |grep ^snd |awk '{print $1}') && sudo modprobe snd-hda-codec && sudo modprobe snd-hda-intel model=3stack


If somebody knows how to do the camera work using this OS, please, post a comment.