stubmaker command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
stubmaker: command not found
or when using sudo you get the following error message
sudo: stubmaker: command not found
Solutions to stubmaker: command not found
How To Fix stubmaker: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu stubmaker is provided by libsoap-lite-perl package.
libsoap-lite-perl is:
SOAP::Lite is a collection of Perl modules that provide a simple and lightweight interface to the Simple Object Access Protocol (SOAP) both on client and server side.
This version of SOAP::Lite supports a subset of the SOAP 1.1 specification and has initial support for SOAP 1.2 specification. See http://www.w3.org/TR/SOAP for details.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libsoap-lite-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libsoap-lite-perl.
sudo apt -y install libsoap-lite-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libsoap-lite-perl
Summary
In this tutorial we learn how to fix stubmaker command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.