mrc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mrc: command not found
or when using sudo you get the following error message
sudo: mrc: command not found
Solutions to mrc: command not found
How To Fix mrc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mrc is provided by mrc package.
mrc is:
This package contains the mrc resource compiler. Use it to bundle data files into an executable. Using the enclosed header file, you can access these resources from your C++ code.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mrc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mrc.
sudo apt -y install mrc
Or if you have aptitude installed you can use the following command.
sudo aptitude install mrc
Summary
In this tutorial we learn how to fix mrc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.