How To Install jta-doc on Debian 9

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

Introduction

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

What is jta-doc

jta-doc 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.

This package provides the API documentation for JTA.

There are three methods to install jta-doc 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-doc 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-doc using apt-get by running the following command:

sudo apt-get -y install jta-doc

Install jta-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install jta-doc

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

sudo aptitude -y install jta-doc

How To Uninstall jta-doc on Debian 9

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

sudo apt-get remove jta-doc

Uninstall jta-doc And Its Dependencies

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

sudo apt-get -y autoremove jta-doc

Remove jta-doc Configurations and Data

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

sudo apt-get -y purge jta-doc

Remove jta-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge jta-doc

Dependencies

jta-doc have the following dependencies:

References

Summary

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