原创
配置fedora8之解决系统启动后鼠标指针消失bug
系统启动后桌面出现后,鼠标指针竟然不见了,但是仍能点击,现在就像瞎子一样。解决这个问题需要在:
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
文章评论(0条评论)
登录后参与讨论