How To Install jta on Debian 9

In this tutorial we learn how to install jta on Debian 9. jta is Java telnet/ssh applet

Introduction

In this tutorial we learn how to install jta on Debian 9.

What is jta

jta is:

JTA is a Java implementation of Telnet and ssh.

JTA may be run as a standalone application (using class de.mud.jta.Main), or as a Java Applet (class de.mud.jta.Applet).

It’s modular structure allows one to configure the software to act either as a sophisticated terminal emulation and/or, adding the network backend, as telnet implementation. Additional modules provide features like scripting or an improved graphical user interface.

There are three methods to install jta 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 jta Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install jta

Install jta Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install jta using apt by running the following command:

sudo apt -y install jta

Install jta 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 jta using aptitude by running the following command:

sudo aptitude -y install jta

How To Uninstall jta on Debian 9

To uninstall only the jta package we can use the following command:

sudo apt-get remove jta

Uninstall jta And Its Dependencies

To uninstall jta and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove jta

Remove jta Configurations and Data

To remove jta configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge jta

Remove jta configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge jta

Dependencies

jta have the following dependencies:

References

Summary

In this tutorial we learn how to install jta package on Debian 9 using different package management tools: apt, apt-get and aptitude.