ubuntu在系统启动logo过后无法进入桌面的处理方法

1)ubuntu在系统启动logo过后无法进入桌面的处理方法

一般情况下,无法显示桌面,然后/var/log/Xorg.0.log中显示找不到显示器设备,但是在系统启动的时候会显示启动logo,是因为显示配置文件找不到。例如,/etc/X11/xorg.config文件不存在。 走此情况的解决方法是: #Xorg -configure    //生成默认配置文件,一般保存为/root/xorg.conf.new 然后将其重命名为xorg.conf #mv /root/xorg.conf.new /etc/X11/xorg.conf 重启系统即可

转自:http://jiazaihaibian.wordpress.com/2010/11/16/ubuntu%E5%9C%A8%E7%B3%BB%E7%BB%9F%E5%90%AF%E5%8A%A8logo%E8%BF%87%E5%90%8E%E6%97%A0%E6%B3%95%E8%BF%9B%E5%85%A5%E6%A1%8C%E9%9D%A2%E7%9A%84%E5%A4%84%E7%90%86%E6%96%B9%E6%B3%95/

2)重装ubuntu Gnome环境

不小心按到了ctrl alt+backspace,正在更新主题,结果就重启。弄得无法进入Gnome。郁闷,想着要重装了。没办法,重试修复无效,无奈重装Gnome环境。

联网,输入:

sudo apt-get remove ubuntu-desktop

再输入:

sudo apt-get install ubuntu-desktop

安装完成,重登录,Gnome回来了,文件设置等也没有改变。看来ubuntu下面还是不要乱重启,教训阿教训。。。

转自:http://www.fallensnow.net/index.php/archives/47

3)为Ubuntu Server安装gnome图形桌面环境

ubuntu server版默认都没有图形桌面(GUI),但是可以安装,以下共有两种安装方法。

一、安装全部Gnome桌面环境

Ubuntu系列桌面实际上有几种桌面应用程序,包括Ubuntu-desktop、Kubunut-desktop和Xubuntu-desktop。本文就以Ubuntu-desktop为例进行介绍,此方法操作最简单,但不建议在服务器上使用此方法,因为安装桌面相关软件太多。 
sudo aptitude install ubuntu-desktop 
或 
sudo apt-get install ubuntu-desktop

一、自定义安装

1.安装x-windows的基础(必须): 
sudo apt-get install x-window-system-core 
2.安装gnome基础(必须): 
sudo apt-get install gnome-core 
3.安装中文显示(建议安装): 
sudo apt-get install language-pack-gnome-zh  #让gnome面板、菜单显示中文 
sudo apt-get install language-pack-gnome-zh-base 
sudo apt-get install language-pack-zh             #中文语言包 
sudo apt-get install language-pack-zh-base 
sudo apt-get install language-support-zh        #中文语言支持 
sudo apt-get install scim        #scim中文输入法平台 
4.安装登录管理器(一般不选): 
sudo apt-get install gdm 
说明: 
gdm(gnome display manager)即gnome图形界面显示管理器,还有kdm/xdm等,它将使您可以在启动时直接进入GUI桌面环境,而勿需通过 startx 来启动GUI。 
5.安装新利得软件管理器(可选): 
sudo apt-get install synaptic 
6.卸载gnome桌面环境: 
sudo apt-get –purge remove liborbit2 
7.进入图形界面:startx 
8.退出图形桌面:ctrl + alt + backspace

转自:http://blog.creke.net/696.html

原文地址:https://www.cnblogs.com/gaodong/p/3463357.html