|
我安装的xorg。安装过程倒是没问题。但是一输入startx无法启动桌面。
我的配置是:
主板:技嘉EP43
CPU:E2180
显卡:GF9400GT
内存:威刚2G+1G DDR800
显示器:ACER 20寸 16:9
下面是我的xorg.conf文件内容。我不知道怎么改。还望高手指点。
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/OTF"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/100dpi/"
FontPath "/usr/share/fonts/75dpi/"
EndSection
Section "Module"
Load "dri"
Load "extmod"
Load "dbe"
Load "record"
Load "dri2"
Load "glx"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option " rotocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "SWcursor" # [<bool>]
#Option "HWcursor" # [<bool>]
#Option "NoAccel" # [<bool>]
#Option "ShadowFB" # [<bool>]
#Option "UseFBDev" # [<bool>]
#Option "Rotate" # [<str>]
#Option "VideoKey" # <i>
#Option "FlatPanel" # [<bool>]
#Option "FPDither" # [<bool>]
#Option "CrtcNumber" # <i>
#Option "FPScale" # [<bool>]
#Option "FPTweak" # <i>
#Option "DualHead" # [<bool>]
Identifier "Card0"
Driver "nvidia"
VendorName "nVidia Corporation"
BoardName "G96 [GeForce 9400 GT]"
BusID " CI:1:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
上面那个是我安装好xorg-x11的时候,照手册Xorg –configure做的。然后把新生成的xorg配置文件拷贝到/etc/X11/xorg.conf。结果startx的时候报错:
(==)log file:”/var/log/xorg.0.log”,Time
(==)Using config file:”/etc/X11/xorg.conf”
(EE)May 18 05:37:26 NVIDIA(0): Failed to initialize the GLX module;please check in your X
(EE) May 18 05:37:26 NVIDIA(0):log file that the GLX module has been loaded in your X
(EE) May 18 05:37:26 NVIDIA(0):server,and that the module is the NVIDIA GLX module ,IF
(EE) May 18 05:37:26 NVIDIA(0):you continue to encounter problems,please try
(EE) May 18 05:37:26 NVIDIA(0):reinstalling the NVIDIA driver
Expected keysym,got XF86TouchpadToggle:line 122 of inet
/etc/X11/xinit/xinitrc:line58:twm:command not found
/etc/X11/xinit/xinitrc:line59:xclock:command not found
/etc/X11/xinit/xinitrc:line60:xterm:command not found
/etc/X11/xinit/xinitrc:line61:xterm:command not found
/etc/X11/xinit/xinitrc:line62:exec:xterm:not found
Waiting for x server to shut down |
|