rman command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rman: command not found
or when using sudo you get the following error message
sudo: rman: command not found
Solutions to rman: command not found
How To Fix rman: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rman is provided by rman package.
rman is:
PolyglotMan (formerly RosettaMan) is a filter for UNIX manual pages. It takes as input man pages formatted for a variety of UNIX flavors (not [tn]roff source) and produces as output a variety of file formats.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rman
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rman.
sudo apt -y install rman
Or if you have aptitude installed you can use the following command.
sudo aptitude install rman
Summary
In this tutorial we learn how to fix rman command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.