icerun command not found

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

Introduction

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

icerun: command not found

or when using sudo you get the following error message

sudo: icerun: command not found

Solutions to icerun: command not found

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

In Ubuntu icerun is provided by icecc package.

icecc is:

icecc (also known as Icecream) is a distributed compile system. It allows parallel compiling by distributing the compile jobs to several nodes of a compile network running the icecc daemon. The icecc scheduler routes the jobs and provides status and statistics information to the icecc monitor.

Each compile node can accept one or more compile jobs depending on the number of processors and the settings of the daemon. Link jobs and other jobs which cannot be distributed are executed locally on the node where the compilation is started.

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

sudo apt-get -y install icecc

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

You can also use apt command to install icecc.

sudo apt -y install icecc

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

sudo aptitude install icecc

Summary

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