dbar command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dbar: command not found
or when using sudo you get the following error message
sudo: dbar: command not found
Solutions to dbar: command not found
How To Fix dbar: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dbar is provided by dbar package.
dbar is:
dbar lets you define static 0% and 100% marks or you can define these marks dynamically at runtime. Static and dynamic marks can be mixed, in this case the value specified at runtime will have a higher priority.
You can specify ranges of numbers, negative, positive or ranges with a negative min value and positive max value.
Features:
- Simple interface, perfect to use within your scripts
- Trivial to intergrate with dzen
To fix this problem, we can install more using the command below.
sudo apt-get -y install dbar
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dbar.
sudo apt -y install dbar
Or if you have aptitude installed you can use the following command.
sudo aptitude install dbar
Summary
In this tutorial we learn how to fix dbar command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.