How To Install xmount on Fedora 34
Introduction
In this tutorial we learn how to install xmount
on Fedora 34.
What is xmount
xmount allows you to convert on-the-fly between multiple input and output hard disk image types. xmount creates a virtual file system using FUSE (Filesystem in Userspace) that contains a virtual representation of the input image. The virtual representation can be in raw DD, VirtualBox’s virtual disk file format or in VmWare’s VMDK file format. Input images can be raw DD, EWF (Expert Witness Compression Format) or AFF (Advanced Forensic Format) files. In addition, xmount also supports virtual write access to the output files that is redirected to a cache file. This makes it possible to boot acquired hard disk images using QEMU, KVM, VirtualBox, VmWare, or alike.
We can use yum
or dnf
to install xmount
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install xmount.
Install xmount 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 xmount
using dnf
by running the following command:
sudo dnf -y install xmount
Install xmount 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 xmount
using yum
by running the following command:
sudo yum -y install xmount
How To Uninstall xmount on Fedora 34
To uninstall only the xmount
package we can use the following command:
sudo dnf remove xmount
xmount Package Contents on Fedora 34
/usr/bin/xmount
/usr/lib/.build-id
/usr/lib/.build-id/01
/usr/lib/.build-id/01/1689900970bcb6d85bb808d0f53dcf3b8f3c12
/usr/lib/.build-id/04
/usr/lib/.build-id/04/56713655e77a28efb999d33f1debfb2bd76423
/usr/lib/.build-id/07
/usr/lib/.build-id/07/31c107126cb530e882b8855a02e33c0f4f4b03
/usr/lib/.build-id/4a
/usr/lib/.build-id/4a/1dd994dc26983140de0774fe7da4e53c0d0d34
/usr/lib/.build-id/4a/4592108934b9277550f1ce5c9f2f73a46fa50d
/usr/lib/.build-id/52
/usr/lib/.build-id/52/9603d825b4b2c0546dba63806079e6fd4b71bd
/usr/lib/.build-id/7a
/usr/lib/.build-id/7a/bd4ac6e313819657f50789c362823cde321607
/usr/lib/.build-id/82
/usr/lib/.build-id/82/afe2e9d01d6292082fc0674ca5dadce3e8bbde
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/344565609e98438862211db9b72a87f5f94bc3
/usr/lib64/xmount
/usr/lib64/xmount/libxmount_input_aaff.so
/usr/lib64/xmount/libxmount_input_aewf.so
/usr/lib64/xmount/libxmount_input_aff.so
/usr/lib64/xmount/libxmount_input_ewf.so
/usr/lib64/xmount/libxmount_input_raw.so
/usr/lib64/xmount/libxmount_morphing_combine.so
/usr/lib64/xmount/libxmount_morphing_raid.so
/usr/lib64/xmount/libxmount_morphing_unallocated.so
/usr/share/doc/xmount
/usr/share/doc/xmount/AUTHORS
/usr/share/doc/xmount/ChangeLog
/usr/share/doc/xmount/NEWS
/usr/share/doc/xmount/README
/usr/share/doc/xmount/ROADMAP
/usr/share/doc/xmount/TODO
/usr/share/licenses/xmount
/usr/share/licenses/xmount/COPYING
/usr/share/man/man1/xmount.1.gz
References
Summary
In this tutorial we learn how to install xmount
on Fedora 34 using yum and dnf.