ubuntu/debian/linux彻底卸载mysql

卸载mysql:  
  
sudo apt-get autoremove --purge mysql-server-5.0  
  
移除mysql服务:sudo apt-get remove mysql-server  
  
  
移除相关服务:sudo apt-get autoremove mysql-server  
  
  
移除相关:sudo apt-get remove mysql-common //这个很重要   
  
清理残余数据: dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P  
原文地址:https://www.cnblogs.com/light-zhang/p/8349831.html