Problemas com a placa de vídeo Geforce com o Ubuntu 11.10

0

Estou tendo problemas com os drivers da placa de vídeo: GeForce 9600 GT / PCI / SSE2 Ao instalar o Nouveau - não obtendo suporte 3D e o 2d é realmente buggy, fontes difusas e muitas outras coisas. Realmente feio. Ao instalar os drivers da Nvidia, obtendo suporte 3D, mas não 2 monitores. Ao usar as configurações da nvidia e configurar 2 monitores, o X trava em ocasiões estranhas, como abrir o skype ou o VirtualBox ... Acredito que as janelas pop-up o tenham matado ... Coisas realmente estranhas ...

não tem ideia do que mais posso fazer para que isso funcione corretamente.

EDIT: ok, então eu reduzi a questão. Ao usar apenas drivers NVIDIA, e vazio xorg.conf tudo funciona ok, exceto telas duplas - eu recebo apenas uma tela, e eu estou usando as configurações da Nvidia para fazê-lo funcionar como telas duplas, mas quando eu salvar a configuração para xorg.conf , depois de reiniciar o X, eu estou de volta ao cheats no skype, etc.

o xorg.conf salvo pela Nvidia Configurações:

user@ubuntu:~$ cat /etc/X11/xorg.conf
# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 280.13  (buildd@yellow)  Fri Aug  5 12:31:28 UTC 2011

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
    FontPath        "unix/:7100"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Samsung SyncMaster"
    HorizSync       30.0 - 81.0
    VertRefresh     56.0 - 75.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 9600 GT"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "1"
    Option         "TwinViewXineramaInfoOrder" "CRT-0"
    Option         "metamodes" "CRT-0: nvidia-auto-select +1280+0, CRT-1: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
    
por alechko 23.05.2012 / 18:58

2 respostas

2

Eu resolvi isso comentando:

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
#    InputDevice    "Keyboard0" "CoreKeyboard"
#    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

#Section "Files"
#    FontPath        "unix/:7100"
#EndSection

#Section "InputDevice"
#    # generated from default
#    Identifier     "Mouse0"
#    Driver         "mouse"
#    Option         "Protocol" "auto"
#    Option         "Device" "/dev/psaux"
#    Option         "Emulate3Buttons" "no"
#    Option         "ZAxisMapping" "4 5"
#EndSection

#Section "InputDevice"
#    # generated from default
#    Identifier     "Keyboard0"
#    Driver         "kbd"
#EndSection
    
por alechko 17.06.2012 / 12:15
1

Comentando as linhas abaixo nos arquivos xorg.conf, que foram gerados pela ferramenta nvidia-settings, consertei o problema de travamento do xorg para mim. Eu ainda não pesquisei o que essas linhas devem fazer.

Section "Files"
    FontPath        "unix/:7100"
EndSection
    
por bfly2000 15.06.2012 / 01:21