Catalyst Debian Squeeze

Résolu
e.eyore Messages postés 121 Statut Membre -  
 initials 76 -
Bonjour,
J'ai modifier les composants de mon ordi, j'en ai profité pour installer debian squeeze, le problème c'est que une fois installer le driver (linux) présent sur le site amd ati, tout saccade encore, alors que le problème n'avait pas lieu avec debian Lenny
Ma carte HD4850
Avez vous une solution?

Merci
Configuration: Linux
Mozilla 1.9.1.6

2 réponses

  1. initials 76
     
    Salut ;-)

    Essayes avec le pilote libre radeonhd au lieu d'FGLRX ;-)

    Le script sgfxi t'aidera à installer le pilote de ta carte ati et éditera xorg.conf à la fin.

    https://techpatterns.com/forums/about933.html

    Si tu veux essayer radeonhd:

    (dans le répertoire ou se trouve le script)

    sgfxi -N radeonhd


    ou

    sgfxi -N radeon


    Dans ton xorg ensuite tu peux mettre "ati" à la section "device"

    Ici un exemple de xorg.conf avec radeon pour une ATI hd2300 :

    alexis:~# cat /etc/X11/xorg.conf
    Section "ServerLayout"
       Identifier     "aticonfig Layout"
       Screen      0  "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Files"
    EndSection
    Section "Module"
    	Load	"dri"
    	Load	"glx"
    EndSection
    Section "InputDevice"
       Identifier  "Generic Keyboard"
       Driver      "kbd"
       Option       "XkbRules" "xorg"
       Option       "XkbModel" "pc105"
       Option       "XkbLayout" "be"
    EndSection
    Section "InputDevice"
       Identifier  "Configured Mouse"
       Driver      "mouse"
    EndSection
    Section "Monitor"
       Identifier   "aticonfig-Monitor[0]-0"
       Option       "VendorName" "ATI Proprietary Driver"
       Option       "ModelName" "Generic Autodetecting Monitor"
       Option       "DPMS" "true"
    EndSection
    Section "Device"
       Identifier  "ATI 3D"
    	Driver	"radeon"
    	
       BusID       "PCI:1:0:0"
       Option   "DRI"   "enable"
       Option   "EnableDepthMoves"     "true"
       Option      "VideoOverlay" "on"
       Option      "OpenGLOverlay" "off"
    EndSection
    Section "Screen"
       Identifier "aticonfig-Screen[0]-0"
       Device     "ATI 3D"
       Monitor    "aticonfig-Monitor[0]-0"
       DefaultDepth     24
       SubSection "Display"
          Viewport   0 0
          Depth     24
       EndSubSection
    EndSection
    Section "Extensions"
    	Option      "Composite"	"enable"
    	Option      "RENDER"	"enable"
    EndSection
    Section "DRI"
       Mode 0666
    EndSection
    


    Et les modules:

    alexis:~# lsmod | grep radeon
    radeon                442816  2 
    ttm                    26008  1 radeon
    drm_kms_helper         16955  1 radeon
    drm                   107210  5 radeon,ttm,drm_kms_helper
    i2c_algo_bit            3583  1 radeon
    i2c_core               12288  4 radeon,drm,i2c_algo_bit,i2c_i801


    Bonne chance ;-)
    0
  2. e.eyore Messages postés 121 Statut Membre 6
     
    Merci pour ton aide, j'ai mis ma source liste en sid + ta technique, et tout fonctionne ;)
    0
    1. initials 76
       
      Re ;-)

      Cool, content que ça roule pour toi ;-)

      @++
      0