xzgv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xzgv: command not found
or when using sudo you get the following error message
sudo: xzgv: command not found
Solutions to xzgv: command not found
How To Fix xzgv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xzgv is provided by xzgv package.
xzgv is:
xzgv is a picture viewer for X, with a thumbnail-based file selector. Most file formats are supported, and the thumbnails used are compatible with xv, zgv, and the Gimp. It can also be used with `xzgv file(s)’, to effectively bypass the file selector.
xzgv differs from other picture viewers for X in that it uses one window for both the file selector and viewer, it (unlike xv) allows both scrolling and fit-to-window methods of viewing large pictures, and it (unlike xv and some others) doesn’t ever mangle the picture’s aspect ratio.
It also provides extensive keyboard support; if you prefer using the keyboard, this is almost certainly the best viewer for you. But it doesn’t skimp on the mousey stuff, either.
Note that this program is written by the author of the svgalib-based “zgv”, and has similar features.
Home Page: http://sourceforge.net/projects/xzgv
To fix this problem, we can install more using the command below.
sudo apt-get -y install xzgv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xzgv.
sudo apt -y install xzgv
Or if you have aptitude installed you can use the following command.
sudo aptitude install xzgv
Summary
In this tutorial we learn how to fix xzgv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.