运行了一些命令这一页尝试删除 Ubuntu 附带的 Wacom 平板电脑图标。它似乎做了很多事情,但它仍然存在。我看到 nvidia 的一些东西和一堆其他东西被弄乱了,知道我到底做了什么吗?
sudo apt-get remove --auto-remove xserver-xorg-input-wacom
sudo apt-get remove xserver-xorg-input-wacom
sudo apt-get purge xserver-xorg-input-wacom
答案1
以下是你实际做的事情:
我认为--auto-remove
你在第一行中使用的开关无效,因此很可能被忽略了。至于其余的,
从手册页中:
remove
remove is identical to install except that packages are removed
instead of installed. Note that removing a package leaves its
configuration files on the system. If a plus sign is appended to
the package name (with no intervening space), the identified
package will be installed instead of removed.
purge
purge is identical to remove except that packages are removed and
purged (any configuration files are deleted too).