web-dev-qa-db-fra.com

Ubuntu ne démarre que sur un terminal, comment puis-je récupérer le bureau de l'interface graphique?

Où se trouve mon bureau Ubuntu? Son démarrage et aller toujours par défaut à l'écran du terminal, si je presse Ctrl+Alt+F7 toujours en terminal Ctrl+Alt+F1 toujours en terminal.

enter image description here

Pas d'interface graphique, comment puis-je le récupérer?

EDIT:

Sun@e700gent:/etc/X11$ Sudo apt-get install --reinstall ubuntu-desktop
[Sudo] password for Sun: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libcdio-paranoia1 packagekit-backend-aptcc gdebi-core libxrandr-ltsq2 linux-headers-3.5.0-23-generic linux-headers-3.5.0-23 libcdio-cdda1 libllvm3.1
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 209 not upgraded.
Need to get 0 B/4,016 B of archives.
After this operation, 0 B of additional disk space will be used.
(Reading database ... 230006 files and directories currently installed.)
Preparing to replace ubuntu-desktop 1.267.1 (using .../ubuntu-desktop_1.267.1_AMD64.deb) ...
Unpacking replacement ubuntu-desktop ...
Setting up ubuntu-desktop (1.267.1) ...

Sun@e700gent:~$ unity --reset
WARNING: no DISPLAY variable set, setting it to :0

(process:2541): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
//bin/dbus-launch terminated abnormally with the following error: Autolaunch error: X11 initialization failed.

WARNING: environment is incorrect: No D-BUS daemon running

Did you just try to reset in a tty?
unity-panel-service: no process found
compiz (core) - Fatal: Couldn't open display :0




Sun@e700gent:~$ Sudo startx
[Sudo] password for Sun: 


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 e700gent 3.5.0-36-generic #57~precise1-Ubuntu SMP Thu Jun 20 18:21:09 UTC 2013 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.5.0-36-generic.efi.signed root=UUID=68af0547-17ed-4a85-8369-244d57223f91 ro quiet splash vt.handoff=7
Build Date: 11 April 2013  01:05:39PM
xorg-server 2:1.11.4-0ubuntu10.13 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.24.4
    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: Tue Jul 16 17:37:57 2013
(==) 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.

EDIT:

Il semble que la résolution de ce problème ressemble à la science de la fusée, son non corrigé. Au lieu de perdre du temps à le déboguer, j'ai finalement réinstallé Ubuntu.

23
YumYumYum

Essaye ça. Appuyez simplement sur Ctrl+Alt+T sur votre clavier pour ouvrir Terminal. Lorsqu'il s'ouvre, exécutez les commandes ci-dessous:

Sudo apt-get install --reinstall ubuntu-desktop
11
Mitch

Suivez les instructions ci-dessous:

  1. Sudo dpkg --configure -a
  2. Sudo apt-get install --reinstall ubuntu-desktop
  3. redémarrez votre ordinateur et allez sur le bureau
8
Sohrab

quand je rencontre ceci sur ma machine, je supprime simplement le fichier /etc/X11/xorg.conf et redémarre le système. MAIS - je fais toujours des sauvegardes! :)

5
Rodislav Moldovan

Quel gestionnaire d'affichage aviez-vous auparavant? Aller en mode protégé en tant que root avec Ctrl + Alt + F1 Ensuite, essayez de réinstaller les packages suivants:

apt-get install --reinstall xorg-xserver*
apt-get install --reinstall gdm
apt-get install --reinstall unity

Si vous avez un gestionnaire d'affichage différent de gdm, saisissez kdm ou lightdm.

Je l’ai déjà eu aussi - en ce qui concerne les pilotes nvidia ...

5
dschinn1001

Il a été posté dans Ubuntu-forum ce ici pour résoudre le problème après

"Arrêter l'espace utilisateur bootsplash" apparaît comme dans votre journal de démarrage:

Avec les pilotes propriétaires installés, ils ont procédé comme suit:

Ctrl + Alt + F1 (Pour ouvrir un terminal) et après la connexion:

Sudo apt-get clean

Sudo apt-get autoclean

Sudo apt-get autoremove

Sudo dpkg-reconfigure -phigh -a

reboot

Entré en mode de récupération Grub et sélectionné "réparer les paquets endommagés"

reboot

Tenir Shift pour arriver à frapper le menu hit E pour entrer des modifications temporaires dans le lieu générique 'vmalloc = 192Mo', à côté de l'option de démarrage silencieuse

F10

Et le problème maintenant résolu?!

Ils ont ensuite rendu la modification permanente en modifiant le /etc/default/grub pour inclure:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash vmalloc=192MB"

Peut-être que cela résout votre problème? Faites le moi savoir !

3
dschinn1001

J'ai eu le même problème, et aucune des solutions affichées ici n'a fonctionné.
Ce qui a fonctionné pour moi est le suivant:

     Sudo apt-get upgrade
     Sudo reboot

Les commandes telles que apt-get update ne fonctionnaient pas avant le redémarrage. Après avoir redémarré, j'ai ouvert un terminal (Ctrl + Alt + T) et tout mis à jour

    Sudo apt-get update
    Sudo apt-get dist-upgrade

et tout semble bien fonctionner.

2
Laurent Hayez

Si vous avez une interface graphique installée et qu'elle démarre en ligne de commande, vous pouvez utiliser la commande suivante:

Sudo service lightdm start
0
ByWaleed