删除使用 make 安装的软件包

删除使用 make 安装的软件包

我在测试如何在笔记本电脑上实现更好的手势,reddit 上有人建议,我按照以下方式安装指导。

它确实有效,但我不太喜欢它,所以我现在想删除它。但我不知道该怎么做。我尝试在已安装的软件包中找到它

sudo apt list --installed | grep -i mtrack

但没有找到任何东西。我该怎么办?

编辑:转到安装文件夹并运行sudo make uninstall结果如下:

 /bin/bash ./libtool   --mode=uninstall rm -f '/usr/lib/xorg/modules/input/mtrack_drv.la'

答案1

一般来说,运行make uninstall是可以的,但是uninstall不保证目标存在ALL makefile

通过使用该installwatch程序(软件包的一部分checkinstall),以及关于安装软件(sudo installwatch [options] make install,您可以找出哪些文件被更改,并手动删除它们。

描述

   installwatch is a program that is used in order to track the changes made while installing
   local software (i.e.  "make install"). It monitors the requested command, and  produces  a
   log  which  indicates  all  created and modified files. By default it outputs to syslog(3)
   using a priority of "LOG_USER | LOG_INFO". This may be overridden by the  use  of  the  -o
   flag. The log format is as follows:

   <return-value> <syscall-name> <argument> #<comment>

   Each  field  is  delimited  by  a "^I" character if logging to syslog(3), or by a tab when
   logging to a file.

相关内容