Archlinux passe à xorg 7 ...

Le week-end commence à peine ... que je me rend compte que xorg passe en version 7 dans archlinux.

Premier problème :

ttf-bitstream-vera conflicts with xorg:

Il faut commencer par desinstaller xorg sans les dépendances :

pacman -Rd xorg
pacman -Syu
pacman -S xorg

Sinon ... :

error: this will break the following dependencies:
  xorg: is required by hugin
  xorg: is required by grisbi

Une fois installer, il faut modifier le fichier xorg :

Section "Files"
       RgbPath      "/usr/share/X11/rgb"
       ModulePath   "/usr/lib/xorg/modules"
       FontPath     "/usr/share/fonts/misc/"
       FontPath     "/usr/share/fonts/TTF/"
       FontPath     "/usr/share/fonts/Type1/"
       FontPath     "/usr/share/fonts/CID/"
       FontPath     "/usr/share/fonts/75dpi/"
       FontPath     "/usr/share/fonts/100dpi/"

Il faut ensuite installer les pilotes :

pacman -S xorg-video-drivers xorg-input-drivers

(ou alors regardait plus précisement les pilotes voulus avec pacman -Ss xorg-video-drivers et pacman -Ss xorg-input-drivers )

Enfin, il faut reconfigurer gdm :

sed -i 's@/usr/X11R6/bin/@/usr/bin/@g' /opt/gnome/etc/gdm/gdm.conf

Haut de page