mkr2mrc command not found

In this troubleshooting guide we learn how to fix mkr2mrc command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

mkr2mrc: command not found

or when using sudo you get the following error message

sudo: mkr2mrc: command not found

Solutions to mkr2mrc: command not found

How To Fix mkr2mrc: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu mkr2mrc is provided by libmarc-file-marcmaker-perl package.

libmarc-file-marcmaker-perl is:

MARC::File::MARCMaker is an extension to MARC::Record for working with MARC21 data using the format used by the Library of Congress MARCMaker and MARCBreaker programs.

To fix this problem, we can install more using the command below.

sudo apt-get -y install libmarc-file-marcmaker-perl

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install libmarc-file-marcmaker-perl.

sudo apt -y install libmarc-file-marcmaker-perl

Or if you have aptitude installed you can use the following command.

sudo aptitude install libmarc-file-marcmaker-perl

Summary

In this tutorial we learn how to fix mkr2mrc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.