第1步:列出mysql残余文件信息
root@witts:/# dpkg --get-selections | grep mysql mysql-apt-config deinstall mysql-common deinstall mysql-community-client deinstall mysql-community-server deinstall mysql-workbench-community deinstall
第2步:依次清理上面列出的残余文件信息
root@witts:/# apt-get --purge remove mysql-apt-config 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 下列软件包将被【卸载】: mysql-apt-config* 升级了 0 个软件包,新安装了 0 个软件包,要卸载 1 个软件包,有 1 个软件包未被升级。 解压缩后会消耗 0 B 的额外空间。 您希望继续执行吗? [Y/n] y (正在读取数据库 ... 系统当前共安装有 214935 个文件和目录。) 正在清除 mysql-apt-config (0.8.9-1) 的配置文件 ...
第3步:清除mysql的common,client,server
root@witts:/# apt-get --purge remove mysql-community-client root@witts:/# apt-get --purge remove mysql-community-client root@witts:/# apt-get --purge remove mysql-community-server
第4步:清除相关的依赖和相关的信息
root@witts:/# apt-get autoremove //依赖关系
root@witts:/# apt-get autoclean //残留信息
root@witts:rm /etc/mysql/ -R
root@witts:rm /var/lib/mysql/ -R