info2pod command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
info2pod: command not found
or when using sudo you get the following error message
sudo: info2pod: command not found
Solutions to info2pod: command not found
How To Fix info2pod: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu info2pod is provided by info2man package.
info2man is:
This package provides the info2pod tool to convert GNU info documents into Perl’s POD (Plain Old Documentation) format. From there, they can be converted to manual pages to be viewed by people who prefer conventional pagers to the standard info viewer or Emacs.
The info2man tool uses info2pod and pod2man to perform the conversion in one step.
To fix this problem, we can install more using the command below.
sudo apt-get -y install info2man
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install info2man.
sudo apt -y install info2man
Or if you have aptitude installed you can use the following command.
sudo aptitude install info2man
Summary
In this tutorial we learn how to fix info2pod command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.