How To Install xloadimage on Fedora 34
Introduction
In this tutorial we learn how to install xloadimage
on Fedora 34.
What is xloadimage
Xloadimage is a utility which will view many different types of images under X11, load images onto the root window, or dump processed images into one of several image file formats. The current version can read many different image file types. A variety of options are available to modify images prior to viewing. These options include clipping, dithering, depth reduction, zoom (either X or Y axis independently or both at once), brightening or darkening, and image merging. When applicable, these options are done automatically (eg a color image to be displayed on a monochrome screen will be dithered automatically).
We can use yum
or dnf
to install xloadimage
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install xloadimage.
Install xloadimage on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install xloadimage
using dnf
by running the following command:
sudo dnf -y install xloadimage
Install xloadimage on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install xloadimage
using yum
by running the following command:
sudo yum -y install xloadimage
How To Uninstall xloadimage on Fedora 34
To uninstall only the xloadimage
package we can use the following command:
sudo dnf remove xloadimage
xloadimage Package Contents on Fedora 34
/etc/X11/Xloadimage
/usr/bin/uufilter
/usr/bin/xloadimage
/usr/bin/xsetbg
/usr/bin/xview
/usr/lib/.build-id
/usr/lib/.build-id/67
/usr/lib/.build-id/67/49ada9bd0f309b50ef7b7201669a798d298de7
/usr/lib/.build-id/f1
/usr/lib/.build-id/f1/022daa7bebc2ee819c2adbcf9798bbf819bfc5
/usr/share/doc/xloadimage
/usr/share/doc/xloadimage/README
/usr/share/doc/xloadimage/mit.cpyrght
/usr/share/man/man1/uufilter.1x.gz
/usr/share/man/man1/xloadimage.1x.gz
/usr/share/man/man1/xsetbg.1x.gz
/usr/share/man/man1/xview.1x.gz
References
Summary
In this tutorial we learn how to install xloadimage
on Fedora 34 using yum and dnf.