tkinfo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tkinfo: command not found
or when using sudo you get the following error message
sudo: tkinfo: command not found
Solutions to tkinfo: command not found
How To Fix tkinfo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tkinfo is provided by tkinfo package.
tkinfo is:
TKInfo is a very fast lightweight viewer for GNU info files, requiring no configuration. It is particularly effective for local browsing of large and/or interconnected sets of info files.
TkInfo can be used stand alone, or embedded within an application to provide integrated, on-line help.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tkinfo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tkinfo.
sudo apt -y install tkinfo
Or if you have aptitude installed you can use the following command.
sudo aptitude install tkinfo
Summary
In this tutorial we learn how to fix tkinfo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.