xmlroff command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xmlroff: command not found
or when using sudo you get the following error message
sudo: xmlroff: command not found
Solutions to xmlroff: command not found
How To Fix xmlroff: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xmlroff is provided by xmlroff package.
xmlroff is:
xmlroff is a fast, free, high-quality, multi-platform XSL formatter that aims to excel at DocBook formatting and that integrates easily with other programs and with scripting languages.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xmlroff
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xmlroff.
sudo apt -y install xmlroff
Or if you have aptitude installed you can use the following command.
sudo aptitude install xmlroff
Summary
In this tutorial we learn how to fix xmlroff command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.