[已解决][问题]我的Ubuntu登录界面问题?

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
54hayden
帖子: 8
注册时间: 2008-04-20 12:34
来自: 广东/江苏

[已解决][问题]我的Ubuntu登录界面问题?

#1

帖子 54hayden » 2008-04-21 17:31

我的登录界面原本是没问题的,后来装了Nidia X server 后登录界面就变大了。界面无法在屏幕上完全显示出来。什么原因啊?
上次由 54hayden 在 2008-04-23 22:31,总共编辑 1 次。
头像
昂头天外
帖子: 17
注册时间: 2008-04-18 22:33
来自: 普洛西恩
联系:

#2

帖子 昂头天外 » 2008-04-21 21:23

估计是分辨率的问题吧

试着改下试试

1. 备份xorg.conf

代码: 全选

sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup
2. 修改xorg.conf

代码: 全选

sudo gedit /etc/X11/xorg.conf
2.1找到 Section "ServerLayout" 块,查看Screen项的值。
如下是我的,Screen的值就是:aticonfig-Screen[0]

代码: 全选

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"aticonfig-Screen[0]"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"

# Uncomment if you have a wacom tablet
#	InputDevice     "stylus"	"SendCoreEvents"
#	InputDevice     "cursor"	"SendCoreEvents"
#	InputDevice     "eraser"	"SendCoreEvents"
EndSection
2.2根据上一步所找到的Screen值,找到相应的Screen块(Identifier项值为aticonfig-Screen[0]的那个)。在其SubSection "Display"中加入/修改Virtual项。
如下++++++++标记处。

代码: 全选

Section "Screen"
	Identifier "aticonfig-Screen[0]"
	Device     "aticonfig-Device[0]"
	Monitor    "aticonfig-Monitor[0]"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	   Virtual    1024 768   #+++++++++++就是把登录界面的分辨率调成1024*768
	EndSubSection
EndSection
3.重启看看。


-----------------------------------------------------------------------------------------
如果还不行就不是这个原因 ,把备份换回来吧

代码: 全选

sudo mv /etc/X11/xorg.conf_backup /etc/X11/xorg.conf

代码: 全选

写代码就像打太极,读代码正如品散文...  
www.outsky.org.cn
54hayden
帖子: 8
注册时间: 2008-04-20 12:34
来自: 广东/江苏

谢谢!解决了。

#3

帖子 54hayden » 2008-04-23 22:32

回复