pimd command not found

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

Introduction

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

pimd: command not found

or when using sudo you get the following error message

sudo: pimd: command not found

Solutions to pimd: command not found

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

In Ubuntu pimd is provided by pimd package.

pimd is:

pimd is implementation of Protocol Independent Multicast routing daemon. It supports PIMv2-SM/SSM on FreeBSD, NetBSD, OpenBSD, Linux. Enabled PIM support in kernel is needed.

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

sudo apt-get -y install pimd

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

You can also use apt command to install pimd.

sudo apt -y install pimd

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

sudo aptitude install pimd

Summary

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