LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1042|回复: 5

xorg的问题

[复制链接]
发表于 2006-1-15 08:34:54 | 显示全部楼层 |阅读模式
自从把KDE升级到KDE3.5后,startx就没法启动了,但偶尔用root可以启动xfce4,但KDE仍没法启动,这时用普通用户就可以启动xfce4,KDE还是没法启动,请问是什么原因,附上Xorg.0.log.

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
发表于 2006-1-15 08:49:46 | 显示全部楼层
错应该不在X
回复 支持 反对

使用道具 举报

发表于 2006-1-15 10:14:09 | 显示全部楼层
建议apt-get update,apt-get dist-upgrade然后看看
回复 支持 反对

使用道具 举报

发表于 2006-1-15 13:03:14 | 显示全部楼层
设置xorg.conf,把多余的鼠标配置关了,只要一个鼠标配置.(config mouse)

再把显示卡改成vesa
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-1-15 13:09:37 | 显示全部楼层
为什么要配mouse,升级之前好好的,我的附上我的xorg.conf,大家看看跟这个有问题吗?
Section "ServerLayout"
    Identifier     "BothTwinView"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    InputDevice    "Configured Mouse" "CorePointer"
    InputDevice    "Generic Keyboard" "CoreKeyboard"
#    Option         "Xinerama" "on"
    Option         "Clone" "off"
EndSection

Section "Files"
    FontPath        "unix/:7100"
    FontPath        "/usr/lib/X11/fonts/misc"
    FontPath        "/usr/lib/X11/fonts/cyrillic"
    FontPath        "/usr/lib/X11/fonts/100dpi/:unscaled"
    FontPath        "/usr/lib/X11/fonts/75dpi/:unscaled"
    FontPath        "/usr/lib/X11/fonts/Type1"
    FontPath        "/usr/lib/X11/fonts/CID"
    FontPath        "/usr/lib/X11/fonts/Speedo"
    FontPath        "/usr/lib/X11/fonts/100dpi"
    FontPath        "/usr/lib/X11/fonts/75dpi"
    FontPath            "/usr/share/fonts/truetype/winfonts/"
EndSection

Section "Module"
#    Load           "bitmap"
#    Load           "xtt"
    Load           "dbe"
#    Load           "ddc"
    Load           "extmod"
    Load           "freetype"
    Load           "glx"
    Load           "int10"
#    Load           "record"
#    Load           "speedo"
#    Load           "type1"
#    Load           "vbe"


EndSection

Section "InputDevice"
    Identifier     "Generic Keyboard"
    Driver         "keyboard"
    Option         "CoreKeyboard"
    Option         "XkbRules" "xfree86"
    Option         "XkbModel" "pc104"
    Option         "XkbLayout" "us"
EndSection

Section "InputDevice"
    Identifier     "Configured Mouse"
    Driver         "mouse"
    Option         "CorePointer"
    Option         "Device" "/dev/input/mice"
    Option         "rotocol" "ImPS/2"
    Option         "Emulate3Buttons" "true"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier     "Monitor"
    HorizSync       31.0 - 82.0
    VertRefresh     55.0 - 120.0
    Option         "DPMS"
EndSection

Section "Device"

        # Edit the BusID with the location of your graphics card
    Identifier     "nvidia0"
    Driver         "nvidia"
    BusID          "CI:1:0:0"
    Screen          0
EndSection

Section "Device"

        # Edit the BusID with the location of your graphics card
    Identifier     "nvidia1"
    Driver         "nvidia"
    BusID          "CI:1:0:0"
    Screen          1
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "nvidia0"
    Monitor        "Monitor"
    DefaultDepth    16
    SubSection     "Display"
        Depth       16
        Modes      "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "nvidia1"
    Monitor        "Monitor"
    DefaultDepth    16
    SubSection     "Display"
        Depth       16
        Modes      "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
回复 支持 反对

使用道具 举报

发表于 2006-1-15 13:28:07 | 显示全部楼层
这样试一下,xorg升级为6.90吧,能启动X再装nv驱动:
Section "ServerLayout"
Identifier "BothTwinView"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Configured Mouse" "CorePointer"
InputDevice "Generic Keyboard" "CoreKeyboard"
# Option "Xinerama" "on"
Option "Clone" "off"
EndSection

Section "Files"
FontPath "unix/:7100"
FontPath "/usr/lib/X11/fonts/misc"
FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/Type1"
FontPath "/usr/lib/X11/fonts/CID"
FontPath "/usr/lib/X11/fonts/Speedo"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
FontPath "/usr/share/fonts/truetype/winfonts/"
EndSection

Section "Module"
# Load "bitmap"
# Load "xtt"
Load "dbe"
# Load "ddc"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
# Load "record"
# Load "speedo"
# Load "type1"
# Load "vbe"


EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "rotocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
Identifier "Monitor"
HorizSync 31.0 - 82.0
VertRefresh 55.0 - 120.0
Option "DPMS"
EndSection

Section "Device"

# Edit the BusID with the location of your graphics card
Identifier "nvidia0"
Driver "vesa"
BusID "CI:1:0:0"
Screen 0
EndSection

Section "Device"

# Edit the BusID with the location of your graphics card
Identifier "nvidia1"
Driver "nvidia"
BusID "CI:1:0:0"
Screen 1
EndSection

Section "Screen"
Identifier "Screen0"
Device "nvidia0"
Monitor "Monitor"
DefaultDepth 16
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "Screen"
Identifier "Screen1"
Device "nvidia1"
Monitor "Monitor"
DefaultDepth 16
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表