icegridgui command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
icegridgui: command not found
or when using sudo you get the following error message
sudo: icegridgui: command not found
Solutions to icegridgui: command not found
How To Fix icegridgui: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu icegridgui is provided by zeroc-icegridgui package.
zeroc-icegridgui is:
The IceGrid service helps you locate, deploy and manage Ice servers.
The IceGrid GUI give you complete control over your deployed applications. Activities such as starting a server or modifying a configuration setting are just a mouse click away.
Ice is a comprehensive RPC framework that helps you network your software with minimal effort. Ice takes care of all interactions with low-level network programming interfaces and allows you to focus your efforts on your application logic.
To fix this problem, we can install more using the command below.
sudo apt-get -y install zeroc-icegridgui
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install zeroc-icegridgui.
sudo apt -y install zeroc-icegridgui
Or if you have aptitude installed you can use the following command.
sudo aptitude install zeroc-icegridgui
Summary
In this tutorial we learn how to fix icegridgui command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.