web-dev-qa-db-fra.com

Ubuntu 12.04 continue à démarrer sur tty1

J'essayais d'installer xdmx et la dernière chose que j'ai faite a été de supprimer les fichiers ~/.XAuthority*, car une erreur s'est produite lors du verrouillage du fichier d'autorité. Au redémarrage, je me suis retrouvé sur cet écran.

J'ai essayé startx mais j'ai des erreurs. Voici la sortie:

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

J'ai également essayé de réinstaller Xorg mais cela n'a pas aidé non plus.

echo $DISPLAY ne donne rien.

J'apprécierais vraiment toute aide que je pourrais obtenir avec ça. Merci.

6
mindreader

Pour récupérer votre interface graphique, vous devez restaurer le pilote Open-Source. Pour faire ça:

  1. Supprimer xorg.conf:

    Sudo rm /etc/X11/xorg.conf
    
  2. Désinstaller NVidia

    Sudo apt-get purge nvidia*
    
  3. Redémarrez et profitez!

Cependant, ce n'est qu'une solution de contournement. Les pilotes Nouveau sont lents en 3D. Je vous suggère d'attendre la nouvelle version du pilote NVidia et de l'essayer.

1
Danatela

Pour AMD, le problème suivant dans la page officielle BinaryDriverHowto/AMD a résolu le problème:

Supprimer/purger les courants fglrx et fglrx-amdcccle:

Sudo apt-get remove --purge fglrx*

Pour installer les packages d'accélération matérielle avec le pilote:

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

Générez un nouveau fichier xorg.conf AVANT DE REDÉMARRER!

Sudo amdconfig --initial

Il existe des étapes facultatives et des choix multiples, alors assurez-vous de cocher la case 2.1. Installation via la section de ligne de commande.

0
totymedli