How To Install eclipse-titan on Kali Linux
Introduction
In this tutorial we learn how to install eclipse-titan
on Kali Linux.
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 Kali Linux. 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 on Kali Linux first since aptitude is usually not installed by default on Kali Linux. 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 Kali Linux
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 Kali Linux, 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 Kali Linux 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:
- expect
- libedit-dev
- libpcap-dev
- libpcre3-dev
- libsctp-dev
- libssl-dev
- libxml2-dev
- make
- perl
- python3
- gcc
- libc6
- libedit2
- libgcc-s1
- libssl1.1
- libstdc++6
- libxml2
References
Summary
In this tutorial we learn how to install eclipse-titan
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.