How To Install ntfsprogs on CentOS 8
Introduction
In this tutorial we learn how to install ntfsprogs on CentOS 8.
What is ntfsprogs
The ntfsprogs package currently consists of a library and utilities such as mkntfs, ntfscat, ntfsls, ntfsresize, and ntfsundelete (for a full list of included utilities see man 8 ntfsprogs after installation).
We can use yum or dnf to install ntfsprogs on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install ntfsprogs.
Install ntfsprogs on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install ntfsprogs using yum by running the following command:
sudo yum -y install ntfsprogs
Install ntfsprogs on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install ntfsprogs using dnf by running the following command:
sudo dnf -y install ntfsprogs
How To Uninstall ntfsprogs on CentOS 8
To uninstall only the ntfsprogs package we can use the following command:
sudo dnf remove ntfsprogs
References
Summary
In this tutorial we learn how to install ntfsprogs on CentOS 8 using yum and dnf.