- Doc, threads ed articoli utilizzati:
- Pacchetti smascherati:
Code: Select all
=x11-base/xorg-server-1.8.0 =media-fonts/font-util-1.1.1-r1 =media-libs/mesa-7.8.1 =x11-apps/xinit-1.2.1-r1 =x11-base/xorg-drivers-1.8 =x11-drivers/nvidia-drivers-195.36.24 =x11-libs/libvdpau-0.3-r2 =sys-fs/udev-151-r2 =x11-drivers/xf86-input-evdev-2.4.0 - Impostazione del kernel:
Code: Select all
candesktop canduc # grep ^[^#].*EVDEV /usr/src/linux/.config CONFIG_INPUT_EVDEV=m - /etc/make.conf:
Code: Select all
VIDEO_CARDS="nvidia" INPUT_DEVICES="keyboard mouse wacom evdev" - Flag USE impostate:
Code: Select all
sys-fs/udev extras =x11-base/xorg-server-1.8.0 -hal +udev
Dopo questi passi preliminari, ho dato un bel
Code: Select all
emerge -jvuND xorg-serverQuesto file e' compilato con impostazioni generiche: io l'ho completamente commentato.
Le configurazioni che ho fatto successivamente sono state:
- modificare /etc/X11/xorg.conf:
Code: Select all
canduc@candesktop ~ $ cat /etc/X11/xorg.conf Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" BoardName "GeForce 8600M GT" Option "NoLogo" "true" EndSection - creare il file /etc/X11/xorg.conf.d/11-keyboard.conf:
Code: Select all
canduc@candesktop ~ $ cat /etc/X11/xorg.conf.d/11-keyboard.conf Section "InputClass" Identifier "keyboard" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "evdev" Option "XkbLayout" "it" EndSection - creare il file /etc/X11/xorg.conf.d/12-mouse.conf:
Code: Select all
canduc@candesktop ~ $ cat /etc/X11/xorg.conf.d/12-mouse.conf Section "InputClass" Identifier "mouse" MatchIsPointer "on" MatchDevicePath "/dev/input/event*" Driver "evdev" Option "Emulate3Buttons" "no" Option "ZAxisMapping" "4 5" EndSection


