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