当前位置: 技术问答>linux和unix
怎样卸载软件啊?
来源: 互联网 发布时间:2015-05-05
本文导语: How to uninstall the software which install with "make install" ? I'm a beginer . Help me! | I remember to still use make install command! You can use man to understand how to use make install! | ...
How to uninstall the software which install with "make install" ?
I'm a beginer . Help me!
I'm a beginer . Help me!
|
I remember to still use make install command!
You can use man to understand how to use make install!
You can use man to understand how to use make install!
|
查看你的Makefile文件,看看编译好的文件都被cp到哪儿了
找到这些文件删除就可以了。
找到这些文件删除就可以了。
|
首先找到你安装软件的目录,删除它,再用下面的方法之一清空缓存文件:
shell> rm config.cache
shell> make clean
或
shell> make distclean
shell> rm config.cache
shell> make clean
或
shell> make distclean