How To Install xzgv on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes • 470 words
Introduction
In this tutorial we learn how to install xzgv
on Ubuntu.
What is xzgv
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
There are three methods to install xzgv
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install xzgv Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install xzgv
using apt-get
by running the following command:
sudo apt-get -y install xzgv
Install xzgv Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install xzgv
using apt
by running the following command:
sudo apt -y install xzgv
Install xzgv Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install xzgv
using aptitude
by running the following command:
sudo aptitude -y install xzgv
How To Uninstall xzgv on Ubuntu
To uninstall only the xzgv
package we can use the following command:
sudo apt-get remove xzgv
Uninstall xzgv And Its Dependencies
To uninstall xzgv
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove xzgv
Remove xzgv Configurations and Data
To remove xzgv
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge xzgv
Remove xzgv configuration, data, and all of its dependencies
We can use the following command to remove xzgv
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge xzgv
Dependencies
xzgv have the following dependencies:
References
Summary
In this tutorial we learn how to install xzgv
package on Ubuntu using different package management tools: apt, apt-get and aptitude.