tin command not found
In this troubleshooting guide we learn how to fix tin command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
tin: command not found
or when using sudo you get the following error message
sudo: tin: command not found
Solutions to tin: command not found
How To Fix tin: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tin is provided by tin package.
tin is:
tin can read news locally (i.e. from /var/spool/news) or remotely (rtin or tin -r option) via an NNTP (Network News Transport Protocol) server.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tin.
sudo apt -y install tin
Or if you have aptitude installed you can use the following command.
sudo aptitude install tin
Summary
In this tutorial we learn how to fix tin command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.