显示器配置问题

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

显示器配置问题

#1

帖子 maple0730 » 2008-12-13 10:23

显示器怎么配置好呢
单纯配置 /etc/X11/xorg.conf文件不行
这个是我的 /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" "us"
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 "Monitor"
Identifier "Configured Monitor"
EndSection
无效
我知道的显示器的参数
30-70
30-150
修改之后启动图形界面就不行了
望高手解决
头像
drc1234
帖子: 632
注册时间: 2008-08-31 10:09

Re: 显示器配置问题

#2

帖子 drc1234 » 2008-12-13 10:54

UBUNTU804到显示器显卡设置选择你电脑的显示器显卡型号就行了.
UBUNTU810就麻烦了没有显示器显卡设置选项,只能借鉴804完整的/etc/X11/xorg.conf文件改
主要添加下面这些
解释一下Section "Monitor"显示你显示器的牌子型号,modeline就是可设置的桌面分辨率,不止一行,下面只显了一行
Section "Screen"和登录时的画面有关 Virtual 1024 768就是登录时的分辨率,Modes就是可设置画面分辨率.如果显示器是1440 900 ,就改成Virtual 1440 900 Modes "1440x900@60"

Section "Monitor"
Identifier "Configured Monitor"
Vendorname ""
Modelname ""
Horizsync 30.0-72.0
Vertrefresh 50.0-120.0
modeline "1024x768@75" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
Defaultdepth 24
SubSection "Display"
Depth 24
Virtual 1024 768
Modes "1024x768@75" "1024x768@60" "832x624@75" "1024x768@43" "800x600@60" "1152x864@75" "800x600@85" "1280x960@60" "800x600@75" "1280x1024@60" "800x600@72" "1400x1050@60" "800x600@56" "640x480@85" "640x480@75" "640x480@72" "640x480@60"
EndSubSection
回复