Ubuntu 12.04 continua a arrancar para tty1

6

Eu estava tentando instalar o xdmx & amp; a última coisa que fiz foi excluir os arquivos ~/.XAuthority* desde que eu estava recebendo o erro ao bloquear o arquivo de autoridade. Na reinicialização, encontrei-me nesta tela.

Eu tentei startx , mas recebo erros. Aqui está a saída:

xauth:  error in locking authority file /home/ankesh/.Xauthority
xauth:  error in locking authority file /home/ankesh/.Xauthority


X.Org X Server 1.11.3
Release Date: 2011-12-16
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.42-37-generic x86_64 Ubuntu
Current Operating System: Linux mindreader 3.11.0-20-generic #34~precise1-Ubuntu SMP Thu Apr 3 17:25:07 UTC 2014 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.11.0-20-generic.efi.signed root=UUID=a6d7d9bd-c1c4-4be9-96eb-8a54e6e71354 ro quiet splash vt.handoff=7
Build Date: 16 October 2013  04:41:23PM
xorg-server 2:1.11.4-0ubuntu10.14 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.30.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Apr 28 01:56:05 2014
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/etc/X11/xorg.conf.d"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"

Fatal server error:
no screens found

Please consult the The X.Org Foundation support 
     at http://wiki.x.org
 for help. 
Please also check the log file at "/var/log/Xorg.0.log" for additional information.

 ddxSigGiveUp: Closing log
Server terminated with error (1). Closing log file.
xinit: giving up
xinit: unable to connect to X server: No such file or directory
xinit: server error
xauth:  error in locking authority file /home/ankesh/.Xauthority

Eu também tentei reinstalar o Xorg, mas isso também não ajudou.

echo $DISPLAY não fornece nada.

Eu realmente aprecio qualquer ajuda que eu possa conseguir com isso. Obrigado.

    
por mindreader 27.04.2014 / 23:35

2 respostas

1

Para recuperar sua GUI, você precisa restaurar o driver de código aberto. Para fazer isso:

  1. Remover xorg.conf :

    sudo rm /etc/X11/xorg.conf
    
  2. Desinstalar o NVidia

    sudo apt-get purge nvidia*
    
  3. Reinicie e divirta-se!

No entanto, isso é apenas uma solução alternativa. Os drivers Nouveau são lentos em 3D. Eu sugiro que você espere nova versão do driver da NVidia e tente.

    
por Danatela 29.04.2014 / 07:17
0

Para a AMD, o seguinte em página oficial do BinaryDriverHowto / AMD solucionou o problema para mim:

Remover / eliminar atual fglrx e fglrx-amdcccle:

sudo apt-get remove --purge fglrx*

Para instalar os pacotes para aceleração de hardware junto com o driver:

sudo apt-get install fglrx-updates xvba-va-driver libva-glx1 libva-egl1 vainfo

Gere um novo xorg.conf ANTES DE REINICIAR!

sudo amdconfig --initial

Existem alguns passos opcionais e várias opções, por isso verifique o 2.1. Instalando através da seção de linha de comando.

    
por totymedli 27.02.2015 / 17:50