ipbt command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ipbt: command not found
or when using sudo you get the following error message
sudo: ipbt: command not found
Solutions to ipbt: command not found
How To Fix ipbt: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ipbt is provided by its-playback-time package.
its-playback-time is:
ipbt (It’s Playback Time) is a ttyrec player which lets you go backwards and forwards through the recording.
(A ttyrec is a timestamped recording of a terminal session.)
To fix this problem, we can install more using the command below.
sudo apt-get -y install its-playback-time
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install its-playback-time.
sudo apt -y install its-playback-time
Or if you have aptitude installed you can use the following command.
sudo aptitude install its-playback-time
Summary
In this tutorial we learn how to fix ipbt command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.