How To Install ddpt on Fedora 36
Introduction
In this tutorial we learn how to install ddpt
on Fedora 36.
What is ddpt
The ddpt utility is a variant of the standard Unix command dd which copies files. The ddpt utility specializes in files that are block devices. For block devices that understand the SCSI command set, finer grain control over the copy may be available via a SCSI pass-through interface. Note that recent (S)ATA disks can often be driven by SCSI commands due to SCSI to ATA translation (SAT) implemented in the kernel.
We can use yum
or dnf
to install ddpt
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install ddpt.
Install ddpt on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install ddpt
using dnf
by running the following command:
sudo dnf -y install ddpt
Install ddpt on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install ddpt
using yum
by running the following command:
sudo yum -y install ddpt
How To Uninstall ddpt on Fedora 36
To uninstall only the ddpt
package we can use the following command:
sudo dnf remove ddpt
ddpt Package Contents on Fedora 36
/usr/bin/ddpt
/usr/bin/ddpt_sgl
/usr/bin/ddptctl
/usr/lib/.build-id
/usr/lib/.build-id/28
/usr/lib/.build-id/28/0aed1aae3b6a6084f7ffad359dff27812edb17
/usr/lib/.build-id/4c
/usr/lib/.build-id/4c/b9cd47529569e27a053dddd2a465cd03cba20f
/usr/lib/.build-id/c6
/usr/lib/.build-id/c6/47d8ad377c4b7f560d376164ab3b35729ae2a9
/usr/share/doc/ddpt
/usr/share/doc/ddpt/AUTHORS
/usr/share/doc/ddpt/COPYING
/usr/share/doc/ddpt/CREDITS
/usr/share/doc/ddpt/ChangeLog
/usr/share/doc/ddpt/README
/usr/share/doc/ddpt/TODO
/usr/share/doc/ddpt/ddpt_examples.txt
/usr/share/man/man8/ddpt.8.gz
/usr/share/man/man8/ddpt_sgl.8.gz
/usr/share/man/man8/ddptctl.8.gz
References
Summary
In this tutorial we learn how to install ddpt
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).