dosage command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dosage: command not found
or when using sudo you get the following error message
sudo: dosage: command not found
Solutions to dosage: command not found
How To Fix dosage: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dosage is provided by dosage package.
dosage is:
Dosage downloads comic strips. It can retrieve just the latest strip in a comic, catch-up to the last strip downloaded, or download a strip for a particular date/index if the website layout allows it.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dosage
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dosage.
sudo apt -y install dosage
Or if you have aptitude installed you can use the following command.
sudo aptitude install dosage
Summary
In this tutorial we learn how to fix dosage command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.