icemon command not found

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

Introduction

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

icemon: command not found

or when using sudo you get the following error message

sudo: icemon: command not found

Solutions to icemon: command not found

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

In Ubuntu icemon is provided by icecc-monitor package.

icecc-monitor is:

icecc-monitor is a monitoring application for icecc (a distributed compiler). It provides a view on the distributed compile network, which jobs run where and details about jobs and nodes (statistics and overview information).

See the ‘icecc’ package for more information.

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

sudo apt-get -y install icecc-monitor

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

You can also use apt command to install icecc-monitor.

sudo apt -y install icecc-monitor

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

sudo aptitude install icecc-monitor

Summary

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