Tela preta do driver NVIDIA no Linux

3

Ao tentar instalar QUALQUER forma de Linux (tentei o Ubuntu 13.04, Mint 15 Cinnamon, Fedora 18 KDE), eu tenho alguns problemas:

Em primeiro lugar, fico com EXTREME em ambos os CDs ao vivo. Ele começa a travar por minutos e, eventualmente, a tela fica preta e nunca exibe nada novamente.

Aqui estão minhas especificações:

ASUS P8P67 Pro Rev 3.1 Motherboard (Latest BIOS 8/6/2013)
Intel i7 2600K Processor
128GB OCZ SOLID3 SSD (Latest FW 8/6/2013)
1TB Seagate Barracuda 7200RPM HDD
NVIDIA GeForce GTX 580
Yamakasi Catleap Q270 (2560x1440 @ 60Hz) via Dual-Link DVI

Em segundo lugar: Consegui instalar o sistema operacional (de alguma forma, uma das opções do liveCD do Ubuntu, bem como o Fedora KDE I pode passar sem lag), mas quando eu instalo, eu tenho que instalar a nvidia motorista ASAP através do terminal, ou eu fico com o atraso extremo novamente. Uma vez que eu instalei o driver, no entanto, acabei de receber uma tela preta após a reinicialização.

Se esta pergunta for duplicada e eu a tiver perdido, informe-me e terei prazer em removê-la.

Acredito que o problema esteja no driver gráfico, no cartão ou no próprio monitor. Meu problema acontece mesmo em uma versão instalada do Linux / Ubuntu, não apenas no live CD. Eu tentei obter o driver nvidia e seguindo uma infinidade de guias neste site, mas todos eles levam em mim recebendo uma tela preta na inicialização e ter que Ctrl + Alt + F1 para obter um terminal. Se alguém tiver alguma sugestão ou algo assim, eu o aperfeiçoaria muito.

Estou ciente de dois problemas abertos com minha placa gráfica para Ubuntu (Nouveau) especificamente: 1 e 2 , mas as soluções alternativas não funcionam para mim. E também, o driver da nvidia não tem relação com isso - a instalação é, na verdade, a solução sugerida, o que de fato piora o meu problema.

    
por Ricky Mutschlechner 08.08.2013 / 16:42

1 resposta

3

Depois de semanas e semanas brincando, finalmente consegui descobrir meu problema! Foi, de fato, o monitor.

link

Eu segui o guia aqui e editei manualmente o arquivo xorg.conf, e agora tudo funciona perfeitamente!

Adicionando o conteúdo aqui apenas para o caso de os fóruns serem arquivados:

# This section defines the Catleap (HiRes) monitor.  
# I just left this section completely the same as in the example
#

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Shimian"
    ModelName      "QHD270"
    HorizSync      88.8
    VertRefresh    59.5
    Option         "DPMS"
    Modeline       "2560x1440" 241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync
    DisplaySize    597 336  
EndSection

#
# This section defines the video card, I didn't change anything here either
#
Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 460"
EndSection

# This is the section I changed
#
# The BIGGEST issue I had, was figuring out what was on DFP-0, DFP-1 and DFP-2 (which are the dvi/hdmi outputs)
# In MY system, DFP-0 is the "primary" DVI output
# and DFP-1 is the mini-HDMI output
# and DFP-2 is the 2ndary DVI output
# So I want my Catleap on DVI-0 and the Asus twinview monitor on the DFP-2 (so I had to change my cables)
#
Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "NoLogo" "True"
    Option         "TwinView" "1"
# Leave this as DFP-0, which is where the Catleap(hires) monitor is plugged into.
# This (I believe) tells the system what the "primary" display is in the twin view
    Option         "TwinViewXineramaInfoOrder" "DFP-0"
    Option         "UseEDID" "False"
    Option         "UseEDIDDPI" "False"
    Option         "UseEDIDFreqs" "False"
    Option         "ExactModeTimingsDVI" "True"
# This is the only other line I had to change from the example
# DFP-0: 2560x1440_60 +0 +0   <--- This line is the "primary" display on DFP-0 (the Catleap HiRes)
# DFP-2: 1920x1080 +2560 +0   <--- This was for the 2nd monitor, resolution and offset.
# Don't forget the comma between the two monitors
    Option         "metamodes" "DFP-0: 2560x1440_60 +0 +0, DFP-2: 1920x1080 +2560+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    Option         "Xinerama" "0"
EndSection
    
por 10.08.2013 / 08:54