glacier2router command not found

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

Introduction

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

glacier2router: command not found

or when using sudo you get the following error message

sudo: glacier2router: command not found

Solutions to glacier2router: command not found

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

In Ubuntu glacier2router is provided by zeroc-glacier2 package.

zeroc-glacier2 is:

This package contains the Glacier2 router. A Glacier2 router allows you to securely route Ice communications across networks, such as the public Internet and a private network behind a firewall. With Glacier2, you only need to open one port in your firewall to make multiple back-end Ice servers reachable by remote Ice clients on the Internet.

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-glacier2

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

You can also use apt command to install zeroc-glacier2.

sudo apt -y install zeroc-glacier2

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

sudo aptitude install zeroc-glacier2

Summary

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