Ubuntu 13.04 64-bit - a placa GeForce GT 620 não está funcionando, sempre indo para o modo gráfico mínimo

0

Tenho a placa GeForce GT 620 conectada em um PC Dell (Alienware x51) novinho em folha. O LiveCD usado para instalar, enquanto instalava os gráficos, estava correto.

Mas depois disso, eu instalei o openbox e mais alguns pacotes desde então, quando eu inicializo o grub, mas depois não há gráficos mostrando.

    
por YumYumYum 08.09.2013 / 02:00

1 resposta

0

O problema é que o Driver Gráfico com o Ubuntu não é alterado quando o kernel é atualizado ou aplicado update-grub / grub ou initramfs. Então, para consertar, o que fizemos foi o seguinte:

Etapa 1:

vim /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset"
update-grub
update-grub2
reboot

agora que estamos na área de trabalho com gráficos mínimos, podemos passar para a próxima etapa

Etapa 2:

export DISPLAY=:0.0 && software-properties-gtk
> failed (because it installed nvidia-310 which is old not compatible)

export DISPLAY=:0.0 && nvidia-xconfig
> failed (because xorg.conf file was created)

export DISPLAY=:0.0 && apt-get install --reinstall nvidia-current
> failed (because its installing more older version nvidia-304)

Etapa 3:

service lightdm restart (basically it restarts the Ubuntu or X windows system on the fly to get the latest changes, but failed - cause there is no latest driver it goes to minimum graphics)

Etapa 4: a correção real

put it in /etc/modprobe.d/blacklist.conf 
> blacklist nouveau
sudo apt-add-repository ppa:xorg-edgers/ppa
sudo apt-get update
sudo apt-get purge nvidia*
sudo apt-get install nvidia-325

Etapa 5:

Funciona agora

Opcional: marque o cat /etc/X11/xorg.conf ou use xrandr para definir a resolução correta

    
por YumYumYum 08.09.2013 / 22:30