In this blogpost its important to clarify a common point of confusion: ZFS as implemented in Oracle Solaris is not directly available on Oracle Linux. Oracle’s version of ZFS—ZFS on Solaris (Solaris ZFS)—is tightly integrated with the Solaris kernel and is proprietary. Oracle Linux, on the other hand, is based on the Red Hat ecosystem and uses the Unbreakable Enterprise Kernel (UEK), which does not include Oracle’s Solaris ZFS.
However, you can deploy a version of ZFS on Oracle Linux 9 using the OpenZFS project, which is the open-source continuation of ZFS development.
Enable Required Repositories:Oracle Linux does not include OpenZFS by default. Use the EPEL repository or build from source, but the cleanest method is usually via kmods or DKMS packages.
sudo dnf install -y epel-release
Install OpenZFS
- Not Solaris ZFS: This is not Oracle Solaris ZFS, but OpenZFS, which is close in functionality but may lack certain enterprise-specific features or tuning.
- Licensing: ZFS is CDDL licensed, which may have implications for mixing with GPL components.
- Support: Oracle does not support ZFS on Oracle Linux in official capacity. For mission-critical systems, use only with full awareness of support boundaries.
Comments