原创 配置fedora8之解决系统启动后鼠标指针消失bug

2009-4-3 23:57 3401 7 7 分类: MCU/ 嵌入式
系统启动后桌面出现后,鼠标指针竟然不见了,但是仍能点击,现在就像瞎子一样。解决这个问题需要在:
vi /etc/X11/xorg.conf

在device section里面添加:
 Option "HWcursor" "off"即可。
样本文件:
# Xorg configuration created by system-config-display

Section "ServerLayout"
        Identifier     "single head configuration"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "us+inet"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "via"
        Option      "HWcursor" "false"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection


PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
我要评论
0
7
关闭 站长推荐上一条 /3 下一条