Sto cercando di abilitare l'accelerazione 3d della mia scheda ati igp320M.
Premetto che è possibile farlo con i suddetti driver perché su feisty l'accelerazione funzionava e veniva il supporto veniva installato automaticamente all'installazione di ubuntu.
Ho seguito questo
thread ed ho installato i pacchetti fglrx-control, fglrx-driver ed ho editato il mio xorg.conf in questo modo.
Section "Files"
EndSection
Section "Module"
Load "dri"
Load "glx"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "it"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
EndSection
Section "Device"
Identifier "Scheda video generica"
Driver "ati"
BusID "PCI:1:5:0"
EndSection
Section "Monitor"
Identifier "Monitor Generico"
Option "DPMS"
HorizSync 28-51
VertRefresh 43-60
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Scheda video generica"
Monitor "Monitor Generico"
DefaultDepth 24
SubSection "Display"
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
EndSection
In particolare questo:
Section "Device"
Identifier "Scheda video generica"
Driver "ati"
BusID "PCI:1:5:0"
EndSection
prima aveva il valore vesa alla voce driver.
Riavviando xorg tutto funziona a perfezione ma l'accelerazione non è ancora abilitata, provando a sostituire fglrx alla voce driver xorg mi restituisce un errore avvisandomi che non ha trovato nessuna periferica supportata.
Potrebbe essere un errore del pacchetto debian?