sssh command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sssh: command not found
or when using sudo you get the following error message
sudo: sssh: command not found
Solutions to sssh: command not found
How To Fix sssh: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sssh 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 sssh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.