digup command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
digup: command not found
or when using sudo you get the following error message
sudo: digup: command not found
Solutions to digup: command not found
How To Fix digup: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu digup is provided by digup package.
digup is:
digup is a tool to update md5sum or shasum digest files. It will read existing digest files, check the current directory for new, updated, modified, renamed or deleted files and query the user with a summary of changes. After reviewing the updates, they can be written back to the digest file.
To fix this problem, we can install more using the command below.
sudo apt-get -y install digup
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install digup.
sudo apt -y install digup
Or if you have aptitude installed you can use the following command.
sudo aptitude install digup
Summary
In this tutorial we learn how to fix digup command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.