ticker command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ticker: command not found
or when using sudo you get the following error message
sudo: ticker: command not found
Solutions to ticker: command not found
How To Fix ticker: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ticker is provided by ticker package.
ticker is:
Ticker is a simple program to scroll text across a line of the display, in a manner similar to a stock ticker. In fact, since ticker supports communicating with a program that changes the text periodically, it could be used to implement a stock ticker.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ticker
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ticker.
sudo apt -y install ticker
Or if you have aptitude installed you can use the following command.
sudo aptitude install ticker
Summary
In this tutorial we learn how to fix ticker command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.