rexify command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rexify: command not found
or when using sudo you get the following error message
sudo: rexify: command not found
Solutions to rexify: command not found
How To Fix rexify: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rexify is provided by rex package.
rex is:
Rex is a tool to ease the execution of commands on multiple remote servers. You can define small tasks, chain tasks to batches, link them with servers or server groups, and execute them easily in your terminal.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rex
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rex.
sudo apt -y install rex
Or if you have aptitude installed you can use the following command.
sudo aptitude install rex
Summary
In this tutorial we learn how to fix rexify command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.