Ubuntu下清空mysql数据的方法:
打开Ubuntu系统,进入终端命令行。
输入命令中卸载MySQL。
sudo apt-get remove mysql-common
sudo apt-get autoremove --purge mysql-server-5.7
再输入命令清除残留数据。
dpkg -l|grep ^rc|awk '{print$2}'|sudo xargs dpkg -P
查看MySQL的剩余依赖项。
dpkg --list|grep mysql
删除剩余依赖项,例如:
sudo apt-get autoremove --purge mysql-apt-config