Ubuntu 14.04 Xorg.conf 问题

Ubuntu 14.04 Xorg.conf 问题

最近我从 Ubuntu 12.04 升级到了 14.04,我的 Mad Catz Rat 7 运行正常。我按照教程编辑了 xorg.conf 文件并映射了按钮

Section "InputClass"
Identifier "Mouse Remap"
MatchProduct "Saitek Cyborg R.A.T.7 Mouse"
MatchDevicePath "/dev/input/event*"
Option "ButtonMapping" "1 2 3 4 5 6 7 2 9 10 11 12 0 0 0"
EndSection

在 14.04 中,我似乎无法让它工作。我按照相同的步骤操作,但这次我收到了警告

jayden@jayden-System-Product-Name:~$ sudo gedit /etc/X11/xorg.conf
[sudo] password for jayden: 

(gedit:4347): Gtk-WARNING **: Calling Inhibit failed:  
GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name  
org.gnome.SessionManager was not provided by any .service files

(gedit:4347): Gtk-WARNING **: Calling Inhibit failed:   
GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name  
org.gnome.SessionManager was not provided by any .service files

我不知道这意味着什么,但什么都不起作用,而且我似乎找不到任何关于为什么的提示......

答案1

是的,这些错误发生的原因是目录 /etc/X11/ 中没有 xorg.conf。您必须创建一个文件或从其他地方下载它。然后您必须像之前尝试过的那样编辑该文件。

为了使更改生效,您必须使用此命令重新启动 xserversudo restart lightdm

相关内容