Last active
August 8, 2025 15:02
-
-
Save FireEgl/463e07e828a5c311e115cae1f8724950 to your computer and use it in GitHub Desktop.
ZFS Install v2.2.3+ on Ubuntu jammy from Zabbly repos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # May not need all these packages: | |
| apt install build-essential autoconf automake libtool gawk alien fakeroot dkms libblkid-dev uuid-dev libudev-dev libssl-dev zlib1g-dev libaio-dev libattr1-dev libelf-dev linux-headers-generic python3 python3-dev python3-setuptools python3-cffi libffi-dev python3-packaging debhelper-compat dh-python po-debconf python3-all-dev python3-sphinx libpam0g-dev | |
| mkdir -p /etc/apt/keyrings/ | |
| curl -fsSL https://pkgs.zabbly.com/key.asc -o /etc/apt/keyrings/zabbly.asc | |
| sh -c 'cat <<EOF > /etc/apt/sources.list.d/zabbly-kernel-stable.sources | |
| Enabled: yes | |
| Types: deb | |
| URIs: https://pkgs.zabbly.com/kernel/stable | |
| Suites: jammy | |
| Components: zfs main | |
| Architectures: $(dpkg --print-architecture) | |
| Signed-By: /etc/apt/keyrings/zabbly.asc | |
| EOF' | |
| apt update | |
| apt install openzfs-zfsutils openzfs-zfs-dkms openzfs-zfs-initramfs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment