软讯网络 > 操作系统 > Linux > 在linux下卸载程序
【标 题】:在linux下卸载程序
【关键字】:
linux
【来 源】:http://blog.chinaunix.net/article.php?articleId=49940&blogId=2016
在linux下卸载程序
比如卸载mysql:
1.如果是通过.\configure ;make ;make install安装的,可以通过make uninstall卸载。
2.rpm -qa|grep mysql
然后 rpm -e 包名称
如果涉及到依赖,要先卸载依赖,或者加 -nodeps 参数来忽略依赖。
3.yum -y remove mysql