debsigs-autosign command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
debsigs-autosign: command not found
or when using sudo you get the following error message
sudo: debsigs-autosign: command not found
Solutions to debsigs-autosign: command not found
How To Fix debsigs-autosign: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu debsigs-autosign is provided by debsigs package.
debsigs is:
debsigs is a package that allows GPG signatures to be embedded inside Debian packages. These signatures can later be verified by package retrieval and installation tools to ensure the authenticity of the contents of the package.
To fix this problem, we can install more using the command below.
sudo apt-get -y install debsigs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install debsigs.
sudo apt -y install debsigs
Or if you have aptitude installed you can use the following command.
sudo aptitude install debsigs
Summary
In this tutorial we learn how to fix debsigs-autosign command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.