archmage command not found

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

Introduction

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

archmage: command not found

or when using sudo you get the following error message

sudo: archmage: command not found

Solutions to archmage: command not found

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

In Ubuntu archmage is provided by archmage package.

archmage is:

arCHMage is a reader and decompiler for files in the CHM format. This is the format used by Microsoft HTML Help, and is also known as Compiled HTML.

arCHMage provides the following features:

  • Extracting CHM content to set of HTML, CSS files and images
  • Dumping HTML data from CHM as a plain text

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

sudo apt-get -y install archmage

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

You can also use apt command to install archmage.

sudo apt -y install archmage

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

sudo aptitude install archmage

Summary

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