Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/fedora/_include/zfs-config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Finally, install the ``dracut`` module necessary for importing pools at boot tim

dnf install -y zfs-dracut

dnf config-manager --enable updates
dnf config-manager setopt updates.enabled=1


Regenerate initramfs
Expand Down
8 changes: 6 additions & 2 deletions docs/guides/fedora/_include/zfs-packages.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@ Disable the ``updates`` repository to ensure that the correct kernel headers are

.. code-block::

dnf config-manager --disable updates
dnf config-manager setopt updates.enabled=0

Install kernel headers and the OpenZFS package.

.. note::

Refer to the `list of available zfs-release RPMs <https://github.com/zfsonlinux/zfsonlinux.github.com/tree/master/fedora>`_.

.. code-block::

dnf --releasever=${VERSION_ID} install -y \
https://zfsonlinux.org/fedora/zfs-release-2-5$(rpm --eval "%{dist}").noarch.rpm
https://zfsonlinux.org/fedora/zfs-release-3-0$(rpm --eval "%{dist}").noarch.rpm

dnf install -y https://dl.fedoraproject.org/pub/fedora/linux/releases/${VERSION_ID}/Everything/x86_64/os/Packages/k/kernel-devel-$(uname -r).rpm

Expand Down