如何卸载以源代码方式安装的软件
通常的方法是在源代码目录下执行
make uninstall
如果源代码没有提供uninstall方式,那么就没有什么好的方法卸载
这就需要我们在安装此类源代码软件时养成良好的习惯:
- 将软件安装在独立目录树下,在安装配置时:
./configure --prefix=/usr/local/
安装后如要卸载直接删除/usr/lcoal/package-name 即可
- 安装时记录下所安装的所有软件,卸载时删除所有文件,下面介绍方法一例:
代码:
./configure
make
touch /tmp/timestamp
make install
find /{bin,lib,sbin,usr} -cnewer /tmp/timestamp -type f -print /
-exec sh -c " md5sum {} >>/var/lib/packages/your-package-name "
以上find命令可以建立一个系统函数随时调用,以简化操作步骤