xzoom command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xzoom: command not found
or when using sudo you get the following error message
sudo: xzoom: command not found
Solutions to xzoom: command not found
How To Fix xzoom: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xzoom is provided by xzoom package.
xzoom is:
Like xmag, xzoom magnifies a section of the X display. Xzoom is different because it will continuously update the magnified area as the display changes. It is fast enough to enlarge small animations, for example.
It can also mirror or rotate a part of the screen.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xzoom
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xzoom.
sudo apt -y install xzoom
Or if you have aptitude installed you can use the following command.
sudo aptitude install xzoom
Summary
In this tutorial we learn how to fix xzoom command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.