rearj command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rearj: command not found
or when using sudo you get the following error message
sudo: rearj: command not found
Solutions to rearj: command not found
How To Fix rearj: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rearj is provided by arj package.
arj is:
This package is an open source version of the arj archiver. This version has been created with the intent to preserve maximum compatibility and retain the feature set of original ARJ archiver as provided by ARJ Software, Inc.
To fix this problem, we can install more using the command below.
sudo apt-get -y install arj
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install arj.
sudo apt -y install arj
Or if you have aptitude installed you can use the following command.
sudo aptitude install arj
Summary
In this tutorial we learn how to fix rearj command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.