Reputation: 31709
I have just download the .deb and installed it. It works. Now i want to uninstall it.
I have tried:
I reboot my pc after installing it.
Any idea?
Javier.
Upvotes: 7
Views: 57595
Reputation: 1274
I removed using this command:
sudo snap remove mysql-workbench-community
Upvotes: 4
Reputation: 669
You have to specify the edition that you want to uninstall..
sudo apt-get remove mysql-workbench-community
Upvotes: 7
Reputation: 15292
Steps :
Upvotes: 0
Reputation: 105
You can remove all the dependencies with the command below
sudo apt-get remove mysql-*
Upvotes: 0
Reputation: 649
Follow link this : http://dev.mysql.com/doc/workbench/en/wb-linux-uninstalling.html
Uninstalling DEB packages
To uninstall a Debian package, use this command:
sudo dpkg -r mysql-workbench-community
This command does not remove the configuration files. If you wish to also remove the configuration files, use this command:
sudo dpkg --purge mysql-workbench-community
Upvotes: 13
Reputation: 4567
The name of the MySQL Workbench package in Debian comes with the WB edition appended so it should be mysql-workbench-gpl
for the GPL version and mysql-workbench-se
for the SE version. You can search for the one you have installed with:
apt-cache search mysql-workbench
Once you have the proper package name you can remove it in the usual way:
sudo apt-get remove mysql-workbench-gpl
Hope this helps.
Upvotes: 12
Reputation: 5381
It is very simple: If you have the .deb file in place run:
sudo dpkg -r workbench.deb
otherwise simply delete the installation directory of the workbench, this should be sufficient.
Upvotes: 7