Keyboard

升級到 Debian Wheezy 後鍵槃無法使用

  • November 29, 2012

從 lenny 升級到 wheezy 後,鍵盤和滑鼠在 X 中不起作用(鍵盤在啟動之前可用)。我在網際網路上查看了這個問題並找到了一些解決方案:

  1. 刪除 xorg.conf ( http://forums.debian.net/viewtopic.php?f=7&t=62880 )
  2. 更新 udev 和基本文件 ( http://forums.debian.net/viewtopic.php?f=6&t=64927&p=376136#p376136 )
  3. 刪除 /run 目錄 ( http://forums.debian.net/viewtopic.php?f=6&t=64927&p=376136#p376136 )
  4. 重新安裝 xserver 和 xorg

但是,沒有任何幫助:(X-server 的日誌沒有收到任何關於鍵盤或滑鼠錯誤的消息。

下面你可以看到我的系統的配置:

krestyaninov@xxx# uname -a
Linux xxx 3.0.0-1-686-pae #1 SMP Sat Aug 27 16:41:03 UTC 2011 i686 GNU/Linux

krestyaninov@xxx# dpkg -l |grep udev
ii  libgudev-1.0-0 172-1 GObject-based wrapper library for libudev
ii  libudev0 172-1 libudev shared library
ii  udev 172-1 /dev/ and hotplug management daemon

krestyaninov@xxx# dpkg -l |grep base-files
ii  base-files 6.5 Debian base system miscellaneous files

krestyaninov@xxx# dpkg -l |grep xorg
ii  xorg 1:7.6+8 X.Org X Window System
...
ii  xserver-xorg  1:7.6+8 X.Org X server

問題是 X 伺服器不使用 udev 設備,並在日誌中微妙地提示我:

(II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.

所以,當我關注這些行並添加

Section "ServerFlags"
   Option "AutoAddDevices" "False"
EndSection

到 /etc/X11/xorg.conf 問題解決了!

PS 感謝Kubuntu Wiki提供有關 KDE 輸入系統的資訊!:)

引用自:https://serverfault.com/questions/307600