gmdns command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gmdns: command not found
or when using sudo you get the following error message
sudo: gmdns: command not found
Solutions to gmdns: command not found
How To Fix gmdns: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gmdns is provided by gensio-bin package.
gensio-bin is:
This library (pronounced gen’-see-oh) is used to abstract stream I/O like serial port, TCP, telnet, UDP, SSL, IPMI SOL etc and offers a framework for giving a consistent view of various stream (and packet) I/O types. You create a gensio object (or a gensio), and you can use that gensio without having to know too much about what is going on underneath. You can stack gensio on top of another one to add protocol funcionality. For instance, you can create a TCP gensio, stack SSL on top of that, and stack Telnet on top of that. It supports a number of network I/O and serial ports. Gensio can be used for sending and receiving ports, and it also supports establishing encrypted and authenticated connections.
This package contains the command line tool.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gensio-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gensio-bin.
sudo apt -y install gensio-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install gensio-bin
Summary
In this tutorial we learn how to fix gmdns command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.