• [^] # Re: Xorg.conf

    Posté par (site web personnel, Mastodon) . En réponse au message Voodoo2 et Xorg-7.2.0. Évalué à 1.

    Sinon essaie avec une config simpliste comme celle ci :


    Section "Files"
    FontPath "/usr/share/fonts/X11/misc"
    FontPath "/usr/share/fonts/X11/cyrillic"
    FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
    FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
    FontPath "/usr/share/fonts/X11/Type1"
    FontPath "/usr/share/fonts/X11/100dpi"
    FontPath "/usr/share/fonts/X11/75dpi"
    FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    EndSection

    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "fr"
    EndSection

    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    Option "CorePointer"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "ImPS/2"
    EndSection

    Section "Device"
    Identifier "ATI Rage Pro"
    Driver "ati"
    BusID "PCI:1:0:0"
    EndSection

    Section "Device"
    Identifier "Voodoo2"
    Driver "voodoo"
    BusID "PCI:0:13:0"
    EndSection

    Section "Monitor"
    Identifier "Écran générique"
    HorizSync 30-65
    VertRefresh 50-75
    EndSection

    Section "Screen"
    Identifier "Default Screen"
    Device "ATI Rage Pro"
    Monitor "Écran générique"
    DefaultDepth 16
    SubSection "Display"
    Depth 16
    Modes "800x600" "640x480"
    EndSubSection
    EndSection

    Section "Screen"
    Identifier "Other Screen"
    Device "Voodoo2"
    Monitor "Écran générique"
    DefaultDepth 16
    SubSection "Display"
    Depth 16
    Modes "800x600" "640x480"
    EndSubSection
    EndSection

    Section "ServerLayout"
    Identifier "Default Layout"
    Option "Xinerama" "on"
    Screen "Default Screen"
    Screen "Other Screen" RightOf "Default Screen"
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse"
    EndSection


    Enregistre ça dans un fichier safe.conf dans /etc/X11 (pour lancer le X en user en renseignant un fichier de configuration alternatif, le chemin vers ce fichier de configuration doit être relatif)
    Et lance un X avec ce fichier de configuration pour voir :

    X -config safe.conf


    Ou si tu as déjà un X qui tourne :

    X :1 -config safe.conf

    ce commentaire est sous licence cc by 4 et précédentes