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