How To Install mysql-workbench-data on Ubuntu 18.04

In this tutorial we learn how to install mysql-workbench-data on Ubuntu 18.04. mysql-workbench-data is MySQL Workbench – architecture independent data

Introduction

In this tutorial we learn how to install mysql-workbench-data on Ubuntu 18.04.

What is mysql-workbench-data

mysql-workbench-data is:

MySQL Workbench is a modeling tool that allow to design and generate MySQL databases graphically. It also has administration and query development modules where you can manage MySQL server instances and execute SQL queries.

This package provides architecture independent files

There are three methods to install mysql-workbench-data on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install mysql-workbench-data Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install mysql-workbench-data using apt-get by running the following command:

sudo apt-get -y install mysql-workbench-data

Install mysql-workbench-data Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install mysql-workbench-data using apt by running the following command:

sudo apt -y install mysql-workbench-data

Install mysql-workbench-data Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install mysql-workbench-data using aptitude by running the following command:

sudo aptitude -y install mysql-workbench-data

How To Uninstall mysql-workbench-data on Ubuntu 18.04

To uninstall only the mysql-workbench-data package we can use the following command:

sudo apt-get remove mysql-workbench-data

Uninstall mysql-workbench-data And Its Dependencies

To uninstall mysql-workbench-data and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove mysql-workbench-data

Remove mysql-workbench-data Configurations and Data

To remove mysql-workbench-data configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge mysql-workbench-data

Remove mysql-workbench-data configuration, data, and all of its dependencies

We can use the following command to remove mysql-workbench-data configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge mysql-workbench-data

References

Summary

In this tutorial we learn how to install mysql-workbench-data package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.