Tela preta do driver NVIDIA no Linux


3

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

Primeiro, recebo um atraso EXTREME nos dois Live CDs. Ele começa a travar completamente por alguns minutos e, eventualmente, a tela fica preta e nunca exibe nada novamente.

Aqui estão as minhas especificações:

ASUS P8P67 Pro Rev 3.1 Motherboard (BIOS mais recente 2013/08/06)
Intel i7 2600K Processor
128GB OCZ SSD SOLID3 (Latest FW 2013/08/06)
1TB Seagate Barracuda 7200 HDD
NVIDIA GeForce GTX 580
Yamakasi Catleap Q270 (2560x1440 @ 60Hz) via DVI de link duplo

Em segundo lugar: eu consegui instalar o sistema operacional (de alguma forma, uma das opções de liveCD do Ubuntu e do Fedora KDE eu posso fazer isso sem atrasos), mas quando instalo, preciso instalar o driver da nvidia o mais rápido possível. terminal, ou eu recebo o atraso extremo novamente. Depois de instalar o driver, no entanto, recebo uma tela preta ao reiniciar.

Se esta pergunta for duplicada e eu a perdi, informe-nos e teremos prazer em removê-la.

Acredito que o problema esteja no driver gráfico, na placa ou no meu próprio monitor. Meu problema acontece mesmo em uma versão instalada do Linux / Ubuntu, não apenas no CD ao vivo. Eu tentei obter o driver da nvidia e seguir uma infinidade de guias neste site, mas todos eles me levam a obter uma tela preta na inicialização e ter que Ctrl + Alt + F1 para obter um terminal. Se alguém tiver alguma sugestão ou qualquer coisa, eu gostaria muito disso.

Estou ciente de dois problemas em aberto com minha placa de vídeo 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 - instalá-lo é realmente a solução sugerida, o que de fato piora meu problema.

Respostas:


3

Depois de semanas e semanas brincando, finalmente consegui descobrir o meu problema! Na verdade, era o monitor.

http://ubuntuforums.org/showthread.php?t=2038997

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

Adicionando o conteúdo aqui, caso os fóruns sejam 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
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.