HowTo:PostInstall:Xorg19

De Luispa

Actualización a Xorg 1.9

Uno de los problemas que he visto es que perdía el teclado en Castellano.

Tengo que investigar POST HAL. Es decir, hal se abandona y yo lo sigo teniendo por ahí en el sistema, de hecho parece que xorg 1.9 deja de buscar qué teclado usar en la configuración de HAL, tal como yo tenía.

En cualquier caso, y mientras que investigo y documento el tema de Post- HAL (http://fedoraproject.org/wiki/Input_device_configuration)

Volver a activar el tecla en Español

# pwd
/usr/share/X11/xorg.conf.d
# nano 10-evdev.conf 

#                                                                                                                                                  
# Catch-all evdev loader for udev-based systems                                                                                                    
# We don't simply match on any device since that also adds accelerometers                                                                          
# and other devices that we don't really want to use. The list below                                                                               
# matches everything but joysticks.                                                                                                                

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
        Option "xkb_layout" "es"                            <==== Añadir esta línea y rearrancar X
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection


Crash X11: Nvidia 260.19.29 + Xorg 1.9.2 + VMWare Workstation 7

  • Vuelvo a la versión 1.7 de xorg-server, que resuelve el problema
1) Añado a /etc/portage/package.mask 
=x11-base/xorg-server-1.9.2
 
2) Reinstalo xorg-server
$ emerge -v xorg-server  

Vuelve a estas versiones: 
      Mon Jan 10 17:42:45 2011 >>> x11-apps/xinit-1.2.0-r4
      Mon Jan 10 17:44:36 2011 >>> x11-base/xorg-server-1.7.7-r1

3) Reinstalo input-evdev (o X11 dará error)
$ emerge -v xf86-input-evdev

4) Rearranco X
# /etc/init.d/xdm stop
# /etc/init.d/xdm start