Updated Fedora (markdown)

Brian Behlendorf 2019-08-21 12:43:54 -07:00
parent a5475fb399
commit 56f8fb676e
1 changed files with 9 additions and 3 deletions

@ -12,7 +12,7 @@ To simplify installation a zfs-release package is provided which includes a zfs.
**Download from:** [pgp.mit.edu][pubkey]
**Fingerprint:** C93A FFFD 9F3F 7B03 C310 CEB6 A9D5 A1C0 F14A B620
```
```sh
$ sudo dnf install http://download.zfsonlinux.org/fedora/zfs-release$(rpm -E %dist).noarch.rpm
$ gpg --quiet --with-fingerprint /etc/pki/rpm-gpg/RPM-GPG-KEY-zfsonlinux
pub 2048R/F14AB620 2013-03-21 ZFS on Linux <zfs@zfsonlinux.org>
@ -20,12 +20,18 @@ pub 2048R/F14AB620 2013-03-21 ZFS on Linux <zfs@zfsonlinux.org>
sub 2048R/99685629 2013-03-21
```
The ZFS on Linux packages should be installed with dnf on Fedora. 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.
The ZFS on Linux packages should be installed with `dnf` on Fedora. 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.
```
```sh
$ sudo dnf install kernel-devel zfs
```
If the Fedora provided *zfs-fuse* package is already installed on the system. Then the `dnf swap` command should be used to replace the existing fuse packages with the ZFS on Linux packages.
```sh
$ sudo dnf swap zfs-fuse zfs
```
## Testing Repositories
In addition to the primary *zfs* repository a *zfs-testing* repository is available. This repository, which is disabled by default, contains the latest version of ZFS on Linux which is under active development. These packages are made available in order to get feedback from users regarding the functionality and stability of upcoming releases. These packages **should not** be used on production systems. Packages from the testing repository can be installed as follows.