icecream command not found

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

Introduction

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

icecream: command not found

or when using sudo you get the following error message

sudo: icecream: command not found

Solutions to icecream: command not found

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

In Ubuntu icecream is provided by icecream package.

icecream is:

icecream is a non-interactive stream download utility written in Perl. It connects to icecast and shoutcast servers or direct stream URLs, and redirects all fetched content to stdout and/or to media files on your disk.

Listen to the stream piping the output to a stdin-capable media player. Save the stream to a named file or split it into different tracks. It is possible to redirect the stream and save it to disk at the same time.

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

sudo apt-get -y install icecream

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

You can also use apt command to install icecream.

sudo apt -y install icecream

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

sudo aptitude install icecream

Summary

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