是否可以卸载使用“make”或“gmake”安装的程序?
是否可以卸载使用 make
或 gmake
安装的程序?如果可以的话,该怎么做呢?
Is it possible uninstalling of a program installed with make
or gmake
? If possible, how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从源安装时通常应该有一个目标
make uninstall
。它应该在执行 make 的同一位置(在源代码中)执行。如果您想确保在安装软件之前能够将其卸载,您应该使用 checkinstall 来验证是否确实存在卸载目标。usually there should be a target
make uninstall
when install from source. which should be executed in the same place where you executed make (in the source). if you want to make sure you will be able to uninstall a software prior to installing it you should use checkinstall to verify that there is indeed an uninstall target.