Updated RHEL and CentOS (markdown)

Brian Behlendorf 2018-10-12 16:55:10 -07:00
parent c45edde262
commit d9de2059d4
1 changed files with 2 additions and 1 deletions

@ -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
```