|
我在xorg.conf里面注释掉了
FontPath "/usr/share/fonts/Type1"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/75dpi"
FontPath "/usr/share/fonts/100dpi"
这么几行,怎么在startx的时候还有警告?!
(WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
(WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
(WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
(WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
(WW) The directory "/usr/share/fonts/X11/Type1" does not exist.
然道这些字体是xorg必须的?!
还有个问题,如果我的鼠标和键盘用xserver-xorg-input-mouse和xserver-xorg-input-kbd的驱动的话就没有任何警告,用evdev的话有PreInit returned Null for “AT Translated Set 2 keyboard"和“PreInit returned Null for ”ImExPS/2 Generic Explorer Mouse"的错误,但是鼠标和键盘都可以正常使用。这是为什么?
配置如下
Section "InputDevice"
Identifier "Mouse0"
Driver "evdev"
Option "Name" "ImExPS/2 Generic Explorer Mouse"
Option "CorePointer"
Option " rotocol" "auto"
Option "Device" "/dev/input/event5"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "evdev"
Option "Name" "AT Translated Set 2 keyboard"
Option "Device" "/dev/input/event0"
Option "CoreKeyboard"
Option "xkb_rules" "evdev"
Option "xkb_model" "pc105"
Option "xkb_layout" "us"
EndSection |
|