阿里云Centos安装gnome在远程终端管理无法使用键盘和鼠标
Centos安装桌面后在远程终端管理里面无法使用键盘和鼠标
桌面安装好以后,通过远程终端管理进去发现鼠标和键盘都是无法使用的:
这个是由于键盘和驱动的原因,改成evdev 就可以了,具体操作方法如下:
1、安装 evdev
yum install xorg-x11-drv-evdev
2、生成/etc/X11/xorg.conf
这个文件默认是没有的,要通过Xorg -configure 命令生成一个xorg.conf.new,然后把这个文件拷贝到/etc/X11/,并且命名为xorg.conf
3、修改/etc/X11/xorg.conf,配置鼠标和键盘的驱动为 evdev 就可以了,具体配置如下:
Section "InputDevice"
Identifier "Keyboard0"
Driver "evdev"
Option "Device" "/dev/input/event3"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "evdev"
Option "Device" "/dev/input/event5"
Option "Mode" "Absolute"
EndSection
4、修改好以后重启下服务器,重新进入桌面就可以使用鼠标和键盘了。
目录 返回
首页