since command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
since: command not found
or when using sudo you get the following error message
sudo: since: command not found
Solutions to since: command not found
How To Fix since: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu since is provided by since package.
since is:
since is a tail(1) work-alike that remembers how much of a file you have viewed and displays only what’s new when you next view that file. Ideal for viewing log files (it’ll only show what’s new in the file since the last time it was run).
To fix this problem, we can install more using the command below.
sudo apt-get -y install since
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install since.
sudo apt -y install since
Or if you have aptitude installed you can use the following command.
sudo aptitude install since
Summary
In this tutorial we learn how to fix since command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.