|
|
About X-window(xorg). 以成功安装xorg-x11.运行startx后有一个command窗口,一个xterm窗口,一个时钟窗口,但是他们都是在屏幕的中央,比屏幕小得多。应该是分辨率的问题吧。而且光标移到窗口底以下时,窗口不往上翻,即看不见光标了。当exit后,屏幕闪得很厉害,而且偏暗.用nano打开一个文件却是像加了一层淡白色。
我的xorg.conf 内容:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer "
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "File"
RgbPath "/usr/lib/X1/rgb"
ModulePath "usr/lib/modules"
FontPath "usr/share/fonts/misc/"
FontPath "usr/share/fonts/TTF/"
FontPath "usr/share/fonts/Type1/"
FontPath "usr/share/fonts/CID"
FontPath "usr/share/fonts/75dpi/"
FontPath "usr/share/fonts/100dpi"
EndSection
Section "Module"
Load "extmod"
Load "dri"
Load "dbe"
Load "record"
Load "xtrap"
Load "glx"
Load "type1"
Load "freetype"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Device "mouse"
Option " rotocol" "auto"
Option "Device" "/dev/input/mouse0"
EndSection
Section "Monitor"
Identifier "Monitor0"
VenderName "Monitor Vender"
ModelName "Monitor Model"
EndSection
Section "Device"
###(Omit entrys after '#')
...(all are #Option ...)
Identifier "Card0"
Driver "nv"
VenderName "nVidia Corporation"
BoardName "NV11 [GeForce Go]"
BusID " CI:1:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Moniter "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
Modes "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection
EndSection
这里有几个"SubSection "Display"" 在Section Screen中.他们各自表示什么呢?什么是Viewpoint? 我有必要修改Section Monitor加上Graphic device Section吗?? "Virtual" 在SubSection "Display" 中有几种选择?几个display 的顺序有影响吗?? |
|