From d9de2059d4593b8ca15c2b4297ab8d8e74a7b7ed Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 12 Oct 2018 16:55:10 -0700 Subject: [PATCH] Updated RHEL and CentOS (markdown) --- RHEL-and-CentOS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RHEL-and-CentOS.md b/RHEL-and-CentOS.md index 3c64066..e94e9a1 100644 --- a/RHEL-and-CentOS.md +++ b/RHEL-and-CentOS.md @@ -56,9 +56,10 @@ $ sudo yum install zfs ## DKMS -To install DKMS style packages issue the following yum command. Note that it is important to make sure that the matching *kernel-devel* package is installed for the running kernel since DKMS requires it to build ZFS. +To install DKMS style packages issue the following yum commands. First add the [EPEL repository](https://fedoraproject.org/wiki/EPEL) which provides DKMS by installing the *epel-release* package, then the *kernel-devel* and *zfs* packages. Note that it is important to make sure that the matching *kernel-devel* package is installed for the running kernel since DKMS requires it to build ZFS. ``` +$ sudo yum install epel-release $ sudo yum install kernel-devel zfs ```