How To Install ewftools on CentOS 8
Introduction
In this tutorial we learn how to install ewftools
on CentOS 8.
What is ewftools
Several tools for reading and writing EWF files. It contains tools to acquire, verify and export EWF files.
We can use yum
or dnf
to install ewftools
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install ewftools.
Install ewftools on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install ewftools
using dnf
by running the following command:
sudo dnf -y install ewftools
Install ewftools on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install ewftools
using yum
by running the following command:
sudo yum -y install ewftools
How To Uninstall ewftools on CentOS 8
To uninstall only the ewftools
package we can use the following command:
sudo dnf remove ewftools
ewftools Package Contents on CentOS 8
/usr/bin/ewfacquire
/usr/bin/ewfacquirestream
/usr/bin/ewfdebug
/usr/bin/ewfexport
/usr/bin/ewfinfo
/usr/bin/ewfmount
/usr/bin/ewfrecover
/usr/bin/ewfverify
/usr/lib/.build-id
/usr/lib/.build-id/09
/usr/lib/.build-id/09/ead8693393972a8a58c2e896b51f3f8f555de8
/usr/lib/.build-id/0d
/usr/lib/.build-id/0d/4ae60ff00bb3f7cd455e2836052ffdf76e566d
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/a56f4fe5593a044d6ff184d88db2b7acc76008
/usr/lib/.build-id/4d
/usr/lib/.build-id/4d/cf8af6ceea3e9d5d09e31cb4663bc5e74eb33a
/usr/lib/.build-id/92
/usr/lib/.build-id/92/f5011adbfe66541a87b9f12e425080feebb806
/usr/lib/.build-id/9f
/usr/lib/.build-id/9f/391412258dc5e77f4b01a07c09e2e30ccc7d88
/usr/lib/.build-id/cb
/usr/lib/.build-id/cb/5cc40e376cd11899ac7109e343ff0e40554214
/usr/lib/.build-id/d9
/usr/lib/.build-id/d9/7eb6525ffe99436098018c33ae5f3d175d4578
/usr/share/man/man1/ewfacquire.1.gz
/usr/share/man/man1/ewfacquirestream.1.gz
/usr/share/man/man1/ewfexport.1.gz
/usr/share/man/man1/ewfinfo.1.gz
/usr/share/man/man1/ewfmount.1.gz
/usr/share/man/man1/ewfrecover.1.gz
/usr/share/man/man1/ewfverify.1.gz
References
Summary
In this tutorial we learn how to install ewftools
on CentOS 8 using yum and dnf.