How To Install hfsplus-tools on Fedora 36
Introduction
In this tutorial we learn how to install hfsplus-tools
on Fedora 36.
What is hfsplus-tools
HFS+, HFS Plus, or Mac OS Extended are names for a file system developed by Apple Computer to replace their Hierarchical File System (HFS). In addition to being the default file system on modern Apple computers, HFS+ is one of two formats, FAT being the other, that are supported by the iPod hard-disk based music player. Unlike FAT, HFS+ supports UNIX style file permissions, which makes it useful, for serving and sharing files in a secured manner. As Apple Computer’s devices and systems become increasingly ubiquitous, it becomes important that Linux fully support this format. This package provides tools to create and check HFS+ filesystems under Linux. The Linux kernel does not support writing to HFS+ journals, writing to a hfsplus partition is recommended only after disabling journaling; however, the kernel, as of version 2.6.16, supports case-sensitivity (also known as HFSX) commit.
We can use yum
or dnf
to install hfsplus-tools
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install hfsplus-tools.
Install hfsplus-tools 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 hfsplus-tools
using dnf
by running the following command:
sudo dnf -y install hfsplus-tools
Install hfsplus-tools 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 hfsplus-tools
using yum
by running the following command:
sudo yum -y install hfsplus-tools
How To Uninstall hfsplus-tools on Fedora 36
To uninstall only the hfsplus-tools
package we can use the following command:
sudo dnf remove hfsplus-tools
hfsplus-tools Package Contents on Fedora 36
/sbin/fsck.hfs
/sbin/fsck.hfsplus
/sbin/mkfs.hfsplus
/usr/lib/.build-id
/usr/lib/.build-id/1d
/usr/lib/.build-id/1d/7cdca2657ce00f080f3af2b2236a00aa5e5017
/usr/lib/.build-id/76
/usr/lib/.build-id/76/3efe4777a42a2f85b216a5a76febb2edb5a2f5
/usr/share/doc/hfsplus-tools
/usr/share/doc/hfsplus-tools/apsl-2.0.txt
/usr/share/man/man8/fsck.hfs.8.gz
/usr/share/man/man8/fsck.hfsplus.8.gz
/usr/share/man/man8/mkfs.hfsplus.8.gz
References
Summary
In this tutorial we learn how to install hfsplus-tools
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).