rt2 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rt2: command not found
or when using sudo you get the following error message
sudo: rt2: command not found
Solutions to rt2: command not found
How To Fix rt2: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rt2 is provided by rttool package.
rttool is:
RT is simple human-readble table format. RTtool is a converter form RT into various formats. RTtool is one of frontends of formatter for RT.
You can embed RT into Ruby script, and RD documents.
RTtool is one of frontends of formatter for RT. This package provides rt2 command.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rttool
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rttool.
sudo apt -y install rttool
Or if you have aptitude installed you can use the following command.
sudo aptitude install rttool
Summary
In this tutorial we learn how to fix rt2 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.