How To Install tty-share on Kali Linux
Introduction
In this tutorial we learn how to install tty-share
on Kali Linux.
What is tty-share
tty-share is:
tty-share is a very simple command line tool that gives remote access to a UNIX terminal session.
tty-share is used on the machine that wants to share the terminal, and it connects to the server to generate a secret URL, over which the terminal can be viewed in the browser.
tty-share connects over a TLS connection to the server (runs at tty-share.com), which uses a proxy for the SSL termination, and the browser terminal is served over HTTPS. The communication on both sides is encrypted and secured. However, end-to-end encryption is still desired, so nothing but the sender and receiver can decrypt the data passed around.
There are three methods to install tty-share
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 tty-share Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install tty-share
using apt-get
by running the following command:
sudo apt-get -y install tty-share
Install tty-share Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install tty-share
using apt
by running the following command:
sudo apt -y install tty-share
Install tty-share 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 tty-share
using aptitude
by running the following command:
sudo aptitude -y install tty-share
How To Uninstall tty-share on Kali Linux
To uninstall only the tty-share
package we can use the following command:
sudo apt-get remove tty-share
Uninstall tty-share And Its Dependencies
To uninstall tty-share
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove tty-share
Remove tty-share Configurations and Data
To remove tty-share
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge tty-share
Remove tty-share configuration, data, and all of its dependencies
We can use the following command to remove tty-share
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge tty-share
Dependencies
tty-share have the following dependencies:
References
Summary
In this tutorial we learn how to install tty-share
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.