BT4下设置更改屏幕分辨率

来源:岁月联盟 编辑:exp 时间:2011-11-13

 

研究了一段时间,发现BT4下不好改分辨率,尤其对一些LCD屏幕,出现不兼容的问题。

网上的设置分辨率的方法是更改etc/X11/xorg.conf文件,

进入X11目录下发现这个文件是空的,

我自己作了一个文件,进入BT4后,把附件的文件复制到etc/X11下覆盖原文件。

然后注销,重新进入startx。起动后默认是1024*768,进入后字体有点小,可以点开始-系统-设置-外观及主题-字体进行设置,感觉11号雅黑不错。

此方法在U盘BT4,CRT显示器下实验成功。

如下载后不成功,请说明。

 

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.

#

# Note that some configuration settings that could be done previously

# in this file, now are automatically configured by the server and settings

# here are ignored.

#

# 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 "Monitor"

 

Identifier "My Monitor"

 

# HorizSync is in kHz unless units are specified.

# HorizSync may be a comma separated list of discrete values, or a

# comma separated list of ranges of values.

# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S

# USER MANUAL FOR THE CORRECT NUMBERS.

 

HorizSync 31.5 - 150.0

 

# HorizSync 30-64 # multisync

# HorizSync 31.5, 35.2 # multiple fixed sync frequencies

# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies

 

# VertRefresh is in Hz unless units are specified.

# VertRefresh may be a comma separated list of discrete values, or a

# comma separated list of ranges of values.

# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S

# USER MANUAL FOR THE CORRECT NUMBERS.

 

VertRefresh 30-100

 

EndSection

 

# **********************************************************************

# Graphics device section

# **********************************************************************

 

# Any number of graphics device sections may be present

 

# **********************************************************************

# Screen sections

# **********************************************************************

 

# Any number of screen sections may be present. Each describes

# the configuration of a single screen. A single specific screen section

# may be specified from the X server command line with the "-screen"

# option.

Section "Screen"

Identifier "Screen 1"

Device "Videocard0"

Monitor "My Monitor"

 

# If your card can handle it, a higher default color depth (like 24 or 32)

# is highly recommended.

 

# DefaultDepth 8

# DefaultDepth 16

DefaultDepth 24

# DefaultDepth 32

 

# "1024x768" is also a conservative usable default resolution. If you

# have a better monitor, feel free to try resolutions such as

# "1152x864", "1280x1024", "1600x1200", and "1800x1400" (or whatever your

# card/monitor can produce)

 

Subsection "Display"

Depth 8

Modes "1024x768" "800x600" "640x480"

EndSubsection

Subsection "Display"

Depth 16

Modes "1024x768" "800x600" "640x480"

EndSubsection

Subsection "Display"

Depth 24

Modes "1024x768" "800x600" "640x480"

EndSubsection

Subsection "Display"

Depth 32

Modes "1152x864" "1024x768" "800x600" "640x480"

EndSubsection

 

EndSection