Ici on n'a que votre IP, votre pseudo et votre adresse mail que nous ne traitons pas.
Quand vous êtes enregistrés, une seule requête permet de vous afficher les messages que vous n'avez pas lus.
Primtux8 est arrivée! Rendez-vous ici
Vous pouvez désormais vous inscrire librement en cliquant sur "S'enregistrer".

Note de ce sujet :
  • Moyenne : 0 (0 vote(s))
  • 1
  • 2
  • 3
  • 4
  • 5
Bonsoir tout le monde
#15
Bonjour j'ai du nouveau peut-être que ça pourra aider d'autres si ils venaient à rencontrer ce genre de carte graphique !

La carte est bien reconnue avec le bon driver r128 désormais bien qu'il ne semble pas y avoir d'accélération et que les flèches du menu "administrateur" n'apparaissent pas pour le moment. Peut être le fichier xorg.conf à configurer ?

Voici comment nous avons fait :

Après l'installation de Primtux, nous sommes allés dans le mode récupération puis :

Code :
dhclient eth0

Ensuite nous avons mis à jour avec
Code :
apt-get update

Pour enfin installer les paquets suivants :

Code :
apt-get --yes --force-yes --reinstall install firmware-linux firmware-linux-free firmware-linux-nonfree libgl1-mesa-glx libgl1-mesa-dri xserver-xorg-core xserver-xorg-video-ati xserver-xorg-video-r128

puis chargés le module au démarrage en ajoutant r128 dans /etc/modules ( il ne se lançait pas au démarrage )

Après avoir redémarré nous avons généré le fichier xorg.conf et mis le driver "r128" dans "Driver" et ajouter :

Code :
Load "dri"
( dans la section module) et ceci à la fin du fichier :

Code :
Section "DRI"
Mode 0666
EndSection

Voyant que ça ne marchait toujours pas nous avons ajouté ceci :

Code :
Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultDepth 24
      SubSection "Display"
            Depth 15
            Modes "1024x768" "800x600"
          EndSubSection
          SubSection "Display"
            Depth 16
            Modes "1024x768" "800x600"
          EndSubSection
SubSection "Display"
            Depth 24
            Modes "1024x768" "800x600"
          EndSubSection

SubSection "Display"
            Depth 8
            Modes "1024x768" "800x600"
          EndSubSection

    
EndSection

Et là après redémarrage nous avons pu avoir une image à l'écran ! Toutefois ça reste lent et si on enlève
Code :
DefaultDepth 24
ça ne marche plus après ! Maintenant il reste à tenter d'optimiser et configurer afin que le tout soit confortable d'utilisation pour les élèves mais nous ne savons pas sur quels paramètres nous devons intervenir...

Auriez vous des suggestions ou des pistes ?

Voilà le fichier xorg.conf complet actuel :

Code :
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    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     "built-ins"
EndSection

Section "Module"
    Load  "glx"
        Load "dri"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    #DisplaySize      320   240    # mm
    Identifier   "Monitor0"
    VendorName   "DEL"
    ModelName    "DELL P793"
    HorizSync    30.0 - 96.0
    VertRefresh  50.0 - 160.0
    Option        "DPMS"
        
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "NoAccel"                # [<bool>]
        #Option     "SWcursor"               # [<bool>]
        #Option     "Dac6Bit"                # [<bool>]
        #Option     "Dac8Bit"                # [<bool>]
        #Option     "DMAForXv"               # [<bool>]
        #Option     "ForcePCIMode"           # [<bool>]
        #Option     "CCEPIOMode"             # [<bool>]
        #Option     "CCENoSecurity"          # [<bool>]
        #Option     "CCEusecTimeout"         # <i>
        #Option     "AGPMode"                # <i>
        #Option     "AGPSize"                # <i>
        #Option     "RingSize"               # <i>
        #Option     "BufferSize"             # <i>
        #Option     "EnablePageFlip"         # [<bool>]
        #Option     "Display"                # <str>
        #Option     "PanelWidth"             # <i>
        #Option     "PanelHeight"            # <i>
        #Option     "ProgramFPRegs"          # [<bool>]
        #Option     "UseFBDev"               # [<bool>]
        #Option     "VideoKey"               # <i>
        #Option     "ShowCache"              # [<bool>]
        #Option     "VGAAccess"              # [<bool>]
        #Option     "AccelMethod"            # <str>
        #Option     "RenderAccel"            # [<bool>]
    Identifier  "Card0"
    Driver      "r128"
    BusID       "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultDepth 24
      SubSection "Display"
            Depth 15
            Modes "1024x768" "800x600"
          EndSubSection
          SubSection "Display"
            Depth 16
            Modes "1024x768" "800x600"
          EndSubSection
SubSection "Display"
            Depth 24
            Modes "1024x768" "800x600"
          EndSubSection

SubSection "Display"
            Depth 8
            Modes "1024x768" "800x600"
          EndSubSection

    
EndSection

Section "DRI"
Mode 0666
EndSection

D'avance merci pour vos suggestions ! J'espère que ça pourra aider d'autres personnes confrontées à ce genre de désagrément !
Répondre


Messages dans ce sujet

Atteindre :


Utilisateur(s) parcourant ce sujet : 1 visiteur(s)