|
|
无意中把linux的X11配置弄坏了,我从事的linux下的工作都是文本界面 的,今日发现X命令后一大堆错误,哪个配置过linux X的高手指导一下。
出错信息
- XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-8) / X Window System
- (protocol Version 11, revision 0, vendor release 6600)
- Release Date: 23 January 2002
- If the server is older than 6-12 months, or if your card is
- newer than the above date, look for a newer version before
- reporting problems. (See http://www.XFree86.Org/)
- Build Operating System: Linux 2.4.17-0.13smp i686 [ELF]
- Build Host: daffy.perf.redhat.com
-
- 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/XFree86.0.log", Time: Mon Aug 15 10:17:47 2005
- (==) Using config file: "/etc/X11/XF86Config-4"
- (EE) No devices detected.
- Fatal server error:
- no screens found
- When reporting a problem related to a server crash, please send
- the full server output, not just the last messages.
- This can be found in the log file "/var/log/XFree86.0.log".
- Please report problems to xfree86@xfree86.org.
复制代码
配置文件如下
- # XFree86 4.2.0 configuration generated by Xconfigurator 4.10.7
- Section "ServerLayout"
- Identifier "XFree86 Configured"
- Screen 0 "Screen0" 0 0
- InputDevice "Mouse0" "CorePointer"
- InputDevice "Keyboard0" "CoreKeyboard"
- EndSection
- # Red Hat Linux 6.0 and later use the xfs font server for improved
- # interactive performance
- Section "Files"
- FontPath "unix/:7100"
- EndSection
- # Module loading section
- Section "Module"
- Load "dbe" # Double-buffering
- Load "GLcore" # OpenGL support
- Load "dri" # Direct rendering infrastructure
- Load "glx" # OpenGL X protocol interface
- Load "extmod" # Misc. required extensions
- Load "v4l" # Video4Linux
- # Load "record" # X event recorder
- # You only need the following two modules if you do not use xfs.
- # Load "freetype" # TrueType font handler
- # Load "type1" # Adobe Type 1 font handler
- EndSection
- Section "InputDevice"
- Identifier "Keyboard0"
- Driver "keyboard"
- Option "XkbLayout" "us"
- EndSection
- Section "InputDevice"
- Identifier "Mouse0"
- Driver "mouse"
- Option "Device" "/dev/mouse"
- Option "Protocol" "IMPS/2"
- Option "Emulate3Buttons" "off"
- Option "ZAxisMapping" "4 5"
- EndSection
- Section "Monitor"
- Identifier "Acer 54es"
- VendorName "Unknown"
- ModelName "Unknown"
- HorizSync 31.0-54.0
- VertRefresh 50.0-110.0
- Option "dpms"
- EndSection
- Section "Device"
- Identifier "My Video Card"
- Driver "ati"
- BoardName "Unknown"
- EndSection
- Section "Device"
- Identifier "Linux Frame Buffer"
- Driver "fbdev"
- BoardName "Unknown"
- EndSection
- Section "Screen"
- Identifier "Screen0"
- Device "My Video Card"
- Monitor "Acer 54es"
- DefaultDepth 16
- Subsection "Display"
- Depth 16
- Modes "640x480"
- EndSubSection
- EndSection
- Section "DRI"
- Mode 0666
- EndSection
复制代码 |
|