登陆界面的分辨率过大,怎么修改过来?

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

登陆界面的分辨率过大,怎么修改过来?

#1

帖子 gj315 » 2008-07-25 18:16

登陆界面的分辨率过大,怎么修改过来?
头像
daf3707
论坛版主
帖子: 12731
注册时间: 2007-06-13 15:57
来自: 在他乡

#2

帖子 daf3707 » 2008-07-25 18:25

代码: 全选

sudo gedit /etc/X11/xorg.conf 
找到以下几行

代码: 全选

Section “Screen” 
Identifier “Default Screen” 
Monitor “Configured Monitor” 
Device “Configured Video Device” 
Depth 24 
Virtual 1024 768 
Endsection
Virtual后就是你的分辨率,改成你合适的。
gj315
帖子: 44
注册时间: 2008-04-04 12:05

#3

帖子 gj315 » 2008-07-25 21:42

谢谢你的回复!我按这个方法

代码: 全选

sudo gedit /etc/X11/xorg.conf 
显示出来的是

代码: 全选

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"cn"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
EndSection

Section "Device"
	Identifier	"Configured Video Device"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
EndSection 
而没有找到

代码: 全选

Section “Screen” 
Identifier “Default Screen” 
Monitor “Configured Monitor” 
Device “Configured Video Device” 
Depth 24 
Virtual 1024 768 
Endsection
头像
xiaomao101
帖子: 474
注册时间: 2006-04-05 18:12
联系:

#4

帖子 xiaomao101 » 2008-07-25 21:50

没有的话就给加上去这一行

代码: 全选

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
	Defaultdepth	24
	SubSection "Display"
		Depth	24
		Virtual	1280	800
		Modes	"1280x800@60"	"1280x720@60"	"1280x768@60"	"800x600@60"	"800x600@56"
	EndSubSection
EndSection

然后1024和768的地方改成你需要的分辨率就行了
头像
xiaomao101
帖子: 474
注册时间: 2006-04-05 18:12
联系:

#5

帖子 xiaomao101 » 2008-07-25 21:57

gj315
帖子: 44
注册时间: 2008-04-04 12:05

#6

帖子 gj315 » 2008-07-26 9:09

好像还是不行,纳闷。

虽然登录界面分辨率没多大关系,但问题解决不了总觉得不舒服。
头像
daf3707
论坛版主
帖子: 12731
注册时间: 2007-06-13 15:57
来自: 在他乡

#7

帖子 daf3707 » 2008-07-26 9:49

没有的原因很简单,你没有选择你使用的显示器,告诉我你使用的显示器,以最佳分辨为1024*768为例。

代码: 全选

gksu displayconfig-gtk
选择显示器的类型,一般CRT的,选择CRT1024*768。LCD选择LCD1024*768
显卡也选择一下,(如果你使用受限驱动,在“受限驱动”里安装完成)。确实,重启X,再按上面我说的修改,或者根本不用修改了。祝你好运
gj315
帖子: 44
注册时间: 2008-04-04 12:05

#8

帖子 gj315 » 2008-07-26 14:53

daf3707 写了:没有的原因很简单,你没有选择你使用的显示器,告诉我你使用的显示器,以最佳分辨为1024*768为例。

代码: 全选

gksu displayconfig-gtk
选择显示器的类型,一般CRT的,选择CRT1024*768。LCD选择LCD1024*768
显卡也选择一下,(如果你使用受限驱动,在“受限驱动”里安装完成)。确实,重启X,再按上面我说的修改,或者根本不用修改了。祝你好运
谢谢,楼上几位好心人的回复。我的是 CRT 1024*768
gj315
帖子: 44
注册时间: 2008-04-04 12:05

#9

帖子 gj315 » 2008-07-26 19:38

所有问题都已经解决,谢谢2位的帮忙!
delectate
帖子: 18311
注册时间: 2008-01-09 22:41

#10

帖子 delectate » 2008-07-26 19:44

gj315 写了:谢谢你的回复!我按这个方法

代码: 全选

sudo gedit /etc/X11/xorg.conf 
显示出来的是

代码: 全选

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"cn"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
EndSection

Section "Device"
	Identifier	"Configured Video Device"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
EndSection 
而没有找到

代码: 全选

Section “Screen” 
Identifier “Default Screen” 
Monitor “Configured Monitor” 
Device “Configured Video Device” 
Depth 24 
Virtual 1024 768 
Endsection
这里:

代码: 全选

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
EndSection 
改成

代码: 全选

Section “Screen” 
Identifier “Default Screen” 
Monitor “Configured Monitor” 
Device “Configured Video Device” 
Depth 24 
Virtual 1024 768 
Endsection
还有一个就是分辨率不是过大,而是过小,显示内容过大吧![/code]
头像
hcym
帖子: 15634
注册时间: 2007-05-06 2:46

#11

帖子 hcym » 2008-07-26 22:36

gksu displayconfig-gtk

登陆界面分辨率问题总算解决了


:P
xfliu
帖子: 24
注册时间: 2008-08-26 14:36

#12

帖子 xfliu » 2008-08-29 10:55

我也有这样的问题,按daf3707的方法解决了,谢谢daf3707
alien_x
帖子: 8
注册时间: 2008-08-19 3:30

#13

帖子 alien_x » 2008-09-19 1:14

谢谢二楼先!不爽了好久,终于解决了 :)
heren
帖子: 5
注册时间: 2010-07-21 18:08

Re: 登陆界面的分辨率过大,怎么修改过来?

#14

帖子 heren » 2010-08-01 10:01

Mark,好办法
lo.yu.linux
帖子: 29
注册时间: 2010-08-03 13:44

Re: 登陆界面的分辨率过大,怎么修改过来?

#15

帖子 lo.yu.linux » 2010-09-25 17:16

好东西,今晚来解决它!
回复