Beleza pessoal!!
No meu caso o problema foi assim: eu seguí completamente esse belo tutorial, e quando eu acessava meu "gedit /etc/X11/xorg.conf" e colocava as linhas "Option "AddARGBGLXVisuals" "True" e Option "DisableGLXRootClipping" "True" (copiando e colando) o sistema não salvava pq eu não respeitava o devido "espaçamento" entre os termos. Aí eu seguí como exemplo o espaçamento já existente no "gedit /etc/X11/xorg.conf" logo abaixo da linha USB.
Por exemplo... no tutorial o "espaçamento" entre os caracteres está assim:
Option "AddARGBGLXVisuals" "True"
Mas na verdade deve ser assim:
Option "AddARGBGLXVisuals" "True"
Notou que o espaço entre os termos "option" e "AddARGBGLXVisuals" e entre "AddARGBGLXVisuals" e
"True" está maior.
Não sei se a solução foi realmente essa, mas depois que eu coloquei assim, funcionou 100%.
Para exemplificar, meu "gedit /etc/X11/xorg.conf" tá assim:
USB
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "Device"
Identifier "Generic Video Card"
Driver "nvidia"
BusID "PCI:1:0:0"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 28-51
VertRefresh 43-60
EndSection
Section "Screen"
Option "AddARGBGLXVisuals" "True"
Option "DisableGLXRootClipping" "True"
Identifier "Default Screen"
Device "Generic Video Card"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
EndSection
Section "DRI"
Mode 0666
EndSection
Não coloquei tudo para não ficar muito grande, mas veja que o espaçamento das linhas que eu inserí coincidem com o espaçamento presente nessa linha abaixo do USB: "Option "ForceDevice" "ISDV4"
Valeu garoto!!!