marc command not found

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

Introduction

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

marc: command not found

or when using sudo you get the following error message

sudo: marc: command not found

Solutions to marc: command not found

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

In Ubuntu marc is provided by arc package.

arc is:

This program is based on the MSDOS ARC program, version 5.21, plus a few enhancements.

ARC also performs Huffman Squeezing on data. The Huffman Squeeze algorithm was removed from MSDOS ARC after version 5.12. It turns out to be more efficient than Lempel-Ziv style compression when compressing graphic images. Squeeze analysis is always done now, and the best of packing, squeezing, or crunching is used.

Compresses and extracts Squashed files. “Squashing” was created by Phil Katz in his PKxxx series of ARC utility programs for MSDOS. Dan Lanciani wrote the original modifications to ARC’s Crunch code to handle Squashing. Klaus Reimer made minor changes since then, mostly to reduce the amount of memory required. The ‘q’ option flag must be specified to Squash files. The Squashing algorithm will be used instead of the usual Crunch algorithm, and will be compared against packing and squeezing, as before.

This package provides the arc and marc commands. MARC can be used to merge files compressed by ARC.

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

sudo apt-get -y install arc

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

You can also use apt command to install arc.

sudo apt -y install arc

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

sudo aptitude install arc

Summary

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