osslsigncode command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
osslsigncode: command not found
or when using sudo you get the following error message
sudo: osslsigncode: command not found
Solutions to osslsigncode: command not found
How To Fix osslsigncode: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu osslsigncode is provided by osslsigncode package.
osslsigncode is:
osslsigncode is an Authenticode signing tool for PE binaries (Windows executables, DLLs, drivers…), CAB archives and MSI installation packages. It also supports timestamping using Authenticode and RFC-3161.
To fix this problem, we can install more using the command below.
sudo apt-get -y install osslsigncode
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install osslsigncode.
sudo apt -y install osslsigncode
Or if you have aptitude installed you can use the following command.
sudo aptitude install osslsigncode
Summary
In this tutorial we learn how to fix osslsigncode command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.