ttysrv command not found

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

Introduction

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

ttysrv: command not found

or when using sudo you get the following error message

sudo: ttysrv: command not found

Solutions to ttysrv: command not found

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

In Ubuntu ttysrv is provided by remote-tty package.

remote-tty is:

This is Paul Vixie’s rtty serial console tool. It allows runs a server per port which then support multiple connections at time from “tip”/“cu”-like clients. It also supports logging of output from the port, even when no client is connected. This can be invaluable for post mortem diagnosis of crashes of serial consoled machines.

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

sudo apt-get -y install remote-tty

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

You can also use apt command to install remote-tty.

sudo apt -y install remote-tty

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

sudo aptitude install remote-tty

Summary

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