C/C++教程

Centos8安装ZFS

本文主要是介绍Centos8安装ZFS,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

查看当前centos版本号

cat /etc/redhat-release
CentOS Linux release 8.3.2011

然后

sudo dnf install https://zfsonlinux.org/epel/zfs-release.<dist>.noarch.rpm
gpg --import --import-options show-only /etc/pki/rpm-gpg/RPM-GPG-KEY-zfsonlinux

其中<dist>换成版本号,比如我这个就是el8_3

DKMS

yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
sudo dnf config-manager --set-enabled powertools

(上面这段是不是可以不要?)

sudo dnf install epel-release
sudo dnf install kernel-devel zfs

要等好久。

插入内核模块

/sbin/modprobe zfs

检查一下是否安装成功:

sudo zfs list

显示这个就说明装好了。

no datasets available

参考文献

官方教程:https://openzfs.github.io/openzfs-docs/Getting Started/RHEL and CentOS.html
https://github.com/openzfs/zfs
https://www.howtogeek.com/175159/an-introduction-to-the-z-file-system-zfs-for-linux/

这篇关于Centos8安装ZFS的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!