vterm-ctrl command not found

In this troubleshooting guide we learn how to fix vterm-ctrl command not found error message

Introduction

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

vterm-ctrl: command not found

or when using sudo you get the following error message

sudo: vterm-ctrl: command not found

Solutions to vterm-ctrl: command not found

How To Fix vterm-ctrl: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu vterm-ctrl is provided by libvterm-bin package.

libvterm-bin is:

An abstract C99 library which implements a VT220 or xterm-like terminal emulator. It doesn’t use any particular graphics toolkit or output system, instead it invokes callback function pointers that its embedding program should provide it to draw on its behalf. It avoids calling malloc() during normal running state, allowing it to be used in embedded kernel situations.

This package contains utility programs that demonstrate libvterm.

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

sudo apt-get -y install libvterm-bin

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

You can also use apt command to install libvterm-bin.

sudo apt -y install libvterm-bin

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

sudo aptitude install libvterm-bin

Summary

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