tpb command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tpb: command not found
or when using sudo you get the following error message
sudo: tpb: command not found
Solutions to tpb: command not found
How To Fix tpb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tpb is provided by tpb package.
tpb is:
This program enables the IBM Thinkpad(tm) special keys. It is possible to bind a program to the ThinkPad button. It has a on-screen display (OSD) to show volume, mute and brightness of the LCD.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tpb
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tpb.
sudo apt -y install tpb
Or if you have aptitude installed you can use the following command.
sudo aptitude install tpb
Summary
In this tutorial we learn how to fix tpb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.