ssshd command not found

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

Introduction

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

ssshd: command not found

or when using sudo you get the following error message

sudo: ssshd: command not found

Solutions to ssshd: command not found

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

In Ubuntu ssshd is provided by guile-ssh package.

guile-ssh is:

Guile-SSH is a library that provides access to the SSH protocol for programs written in GNU Guile interpreter. It is built upon the libssh library.

This includes the GNU Guile bindings.

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

sudo apt-get -y install guile-ssh

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

You can also use apt command to install guile-ssh.

sudo apt -y install guile-ssh

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

sudo aptitude install guile-ssh

Summary

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