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.
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.