How To Install ubuntu-remote-debug-host-tools on Ubuntu 18.04
Introduction
In this tutorial we learn how to install ubuntu-remote-debug-host-tools on Ubuntu 18.04.
What is ubuntu-remote-debug-host-tools
ubuntu-remote-debug-host-tools is:
This metapackage includes packages that help with remote debugging in Ubuntu, including ssh and vnc servers. This will allow a developer to remotely debug a system, as well as remotely test it.
There are three methods to install ubuntu-remote-debug-host-tools 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 ubuntu-remote-debug-host-tools Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install ubuntu-remote-debug-host-tools using apt-get by running the following command:
sudo apt-get -y install ubuntu-remote-debug-host-tools
Install ubuntu-remote-debug-host-tools Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install ubuntu-remote-debug-host-tools using apt by running the following command:
sudo apt -y install ubuntu-remote-debug-host-tools
Install ubuntu-remote-debug-host-tools 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 ubuntu-remote-debug-host-tools using aptitude by running the following command:
sudo aptitude -y install ubuntu-remote-debug-host-tools
How To Uninstall ubuntu-remote-debug-host-tools on Ubuntu 18.04
To uninstall only the ubuntu-remote-debug-host-tools package we can use the following command:
sudo apt-get remove ubuntu-remote-debug-host-tools
Uninstall ubuntu-remote-debug-host-tools And Its Dependencies
To uninstall ubuntu-remote-debug-host-tools and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove ubuntu-remote-debug-host-tools
Remove ubuntu-remote-debug-host-tools Configurations and Data
To remove ubuntu-remote-debug-host-tools configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge ubuntu-remote-debug-host-tools
Remove ubuntu-remote-debug-host-tools configuration, data, and all of its dependencies
We can use the following command to remove ubuntu-remote-debug-host-tools configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ubuntu-remote-debug-host-tools
References
Summary
In this tutorial we learn how to install ubuntu-remote-debug-host-tools package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.