|
|
- debian:~# startx
- X.Org X Server 1.4.2
- Release Date: 11 June 2008
- X Protocol Version 11, Revision 0
- Build Operating System: Linux Debian (xorg-server 2:1.4.2-2)
- Current Operating System: Linux debian 2.6.25-2-686 #1 SMP Fri Jul 18 17:46:56 UTC 2008 i686
- Build Date: 18 July 2008 11:09:10AM
-
- Before reporting problems, check [url]http://wiki.x.org[/url]
- to make sure that you have the latest version.
- Module Loader present
- Markers: (--) probed, (**) from config file, (==) default setting,
- (++) from command line, (!!) notice, (II) informational,
- (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
- (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jul 31 21:44:56 2008
- (==) Using config file: "/etc/X11/xorg.conf"
- (WW) intel: No matching Device section for instance (BusID PCI:0:2:1) found
- (II) Module "ddc" already built-in
- (II) Module "i2c" already built-in
- (EE) intel(0): write to /sys/class/backlight/thinkpad_screen/brightness for backlight control failed: Invalid argument
- (II) Module "ramdac" already built-in
- (EE) intel(0): write to /sys/class/backlight/thinkpad_screen/brightness for backlight control failed: Invalid argument
- (EE) intel(0): RRChangeOutputProperty error, 2
- (EE) intel(0): RRChangeOutputProperty error, 2
- (EE) intel(0): write to /sys/class/backlight/thinkpad_screen/brightness for backlight control failed: Invalid argument
- (EE) intel(0): write to /sys/class/backlight/thinkpad_screen/brightness for backlight control failed: Invalid argument
- (EE) intel(0): write to /sys/class/backlight/thinkpad_screen/brightness for backlight control failed: Invalid argument
- (EE) intel(0): write to /sys/class/backlight/thinkpad_screen/brightness for backlight control failed: Invalid argument
- (EE) intel(0): write to /sys/class/backlight/thinkpad_screen/brightness for backlight control failed: Invalid argument
复制代码
为什么xorg.conf文件里的信息那么少,我dpkg-reconfigure xserver-xorg也没有让我设置显卡和分辨率的界面
- debian:~# cat /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" "pc104"
- Option "XkbLayout" "us"
- EndSection
- Section "InputDevice"
- Identifier "Configured Mouse"
- Driver "mouse"
- EndSection
- Section "Device"
- Identifier "Configured Video Device"
- EndSection
- Section "Monitor"
- Identifier "Configured Monitor"
- EndSection
- Section "Screen"
- Identifier "Default Screen"
- Monitor "Configured Monitor"
- EndSection
复制代码 |
|