minissdpd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
minissdpd: command not found
or when using sudo you get the following error message
sudo: minissdpd: command not found
Solutions to minissdpd: command not found
How To Fix minissdpd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu minissdpd is provided by minissdpd package.
minissdpd is:
MiniSSDPd is a small daemon used by MiniUPnPc (a UPnP control point for IGD devices) to speed up device discoveries. MiniSSDPd keeps memory of all UPnP devices that announced themselves on the network through SSDP NOTIFY packets. MiniSSDPd also has the ability to handle all SSDP traffic received on a computer via the multicast group 239.255.255.250:1900.
MiniSSDPd receives NOTIFY packets and stores information contained for later use by UPnP Control Points on the machine. MiniSSDPd receives M-SEARCH packets and answers on behalf of the UPnP devices running on the machine. MiniUPnPd and MiniUPnPc are designed to take automatically advantage of MiniSSDPd running on the same computer. Just make sure that MiniSSDPd is started before any other UPnP program on the computer.
To fix this problem, we can install more using the command below.
sudo apt-get -y install minissdpd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install minissdpd.
sudo apt -y install minissdpd
Or if you have aptitude installed you can use the following command.
sudo aptitude install minissdpd
Summary
In this tutorial we learn how to fix minissdpd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.