How To Install eclipse-titan on Debian 9
Introduction
In this tutorial we learn how to install eclipse-titan on Debian 9.
What is eclipse-titan
eclipse-titan is:
TTCN-3 is a standardized, modular language specifically designed for testing. Eclipse Titan offers a free and open source (FOSS) compiler both for TTCN-3 and for ASN.1
There are three methods to install eclipse-titan on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install eclipse-titan Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install eclipse-titan using apt-get by running the following command:
sudo apt-get -y install eclipse-titan
Install eclipse-titan Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install eclipse-titan using apt by running the following command:
sudo apt -y install eclipse-titan
Install eclipse-titan 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 Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install eclipse-titan using aptitude by running the following command:
sudo aptitude -y install eclipse-titan
How To Uninstall eclipse-titan on Debian 9
To uninstall only the eclipse-titan package we can use the following command:
sudo apt-get remove eclipse-titan
Uninstall eclipse-titan And Its Dependencies
To uninstall eclipse-titan and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove eclipse-titan
Remove eclipse-titan Configurations and Data
To remove eclipse-titan configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge eclipse-titan
Remove eclipse-titan configuration, data, and all of its dependencies
We can use the following command to remove eclipse-titan configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge eclipse-titan
Dependencies
eclipse-titan have the following dependencies:
References
Summary
In this tutorial we learn how to install eclipse-titan package on Debian 9 using different package management tools: apt, apt-get and aptitude.