tirenweb
tirenweb

Reputation: 31709

How to remove MySQL Workbench 5.2 in ubuntu unity?

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

Answers (7)

Usama Majid
Usama Majid

Reputation: 1274

I removed using this command:

sudo snap remove mysql-workbench-community

Upvotes: 4

Ashutosh Srivastav
Ashutosh Srivastav

Reputation: 669

You have to specify the edition that you want to uninstall..

sudo apt-get remove mysql-workbench-community

Upvotes: 7

RIYAJ KHAN
RIYAJ KHAN

Reputation: 15292

Steps :

  1. Go to Ubuntu Software Center
  2. Click on installed Tab.
  3. click Developer Tools You will get list of software.Select Workbench and remove it.

Upvotes: 0

Sarvas
Sarvas

Reputation: 105

You can remove all the dependencies with the command below

sudo apt-get remove mysql-*

Upvotes: 0

Donot Don't
Donot Don't

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

Sergio
Sergio

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

Flo Doe
Flo Doe

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

Related Questions