peek command not found
In this troubleshooting guide we learn how to fix peek command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
peek: command not found
or when using sudo you get the following error message
sudo: peek: command not found
Solutions to peek: command not found
How To Fix peek: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu peek is provided by peek package.
peek is:
Peek is a simple screen recorder. It is optimized for generating animated GIFs but you can also directly record to WebM or MP4 if you prefer.
To fix this problem, we can install more using the command below.
sudo apt-get -y install peek
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install peek.
sudo apt -y install peek
Or if you have aptitude installed you can use the following command.
sudo aptitude install peek
Summary
In this tutorial we learn how to fix peek command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.