unrtf command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
unrtf: command not found
or when using sudo you get the following error message
sudo: unrtf: command not found
Solutions to unrtf: command not found
How To Fix unrtf: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu unrtf is provided by unrtf package.
unrtf is:
UnRTF is a moderately complicated converter from RTF to other formats, including HTML, LaTeX, and text. Converting to HTML, it supports tables, fonts, colors, embedded images, hyperlinks, paragraph alignment among other things. All other conversions are “alpha”–just begun.
To fix this problem, we can install more using the command below.
sudo apt-get -y install unrtf
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install unrtf.
sudo apt -y install unrtf
Or if you have aptitude installed you can use the following command.
sudo aptitude install unrtf
Summary
In this tutorial we learn how to fix unrtf command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.