卸载时报错
/usr/sbin/deluser: The user `xxx‘ is not a member of group `input‘.
dpkg: error processing package touchpad-indicator (--purge)
即当前用户xxx不在input group 里面,添加到input group中:
# usermod -a -G input xxx
‘-a‘指append,将xxx加到其他组中,但是不必从其他组里移除,要与‘-G‘一起使用
卸载touchpad-indicator:
$ sudo apt-get --purge remove touchpad-indicator