tty-share command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tty-share: command not found
or when using sudo you get the following error message
sudo: tty-share: command not found
Solutions to tty-share: command not found
How To Fix tty-share: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tty-share is provided by tty-share package.
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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tty-share
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tty-share.
sudo apt -y install tty-share
Or if you have aptitude installed you can use the following command.
sudo aptitude install tty-share
Summary
In this tutorial we learn how to fix tty-share command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.