@jongeduard - it's safe to manually build zfs-dkms
/ zfs-utils
versions 2.1.1
. I noticed today on another machine running Manjaro they use 2.1.1
now.
If you have pacman-contrib
installed the PKGBUILD
integrity sums can be updated with updpkgsums
run in the directory with the PKGBUILD
& then makepkg -s
After building install with:
mylist=$(ls /path/to/packages/zfs*2.1.1*)
sudo pacman -U $mylist
I've successfully built zfs
modules for:
==> dkms install --no-depmod -m zfs -v 2.1.1 -k 5.12.19-hardened1-1-hardened
==> dkms install --no-depmod -m zfs -v 2.1.1 -k 5.10.61-1-lts
==> dkms install --no-depmod -m zfs -v 2.1.1 -k 5.10.18-zen-1-zen-lts510-g513e3c94a40f
==> dkms install --no-depmod -m zfs -v 2.1.1 -k 5.10.60-hardened1-1-hardened-cacule
==> dkms install --no-depmod -m zfs -v 2.1.1 -k 5.12.19-1-ck
==> dkms install --no-depmod -m zfs -v 2.1.1 -k 5.14.8-hardened1-1-hardened
Pinned Comments
kstolp commented on 2023-09-29 00:34 (UTC)
When requesting changes, please include detailed reasoning for the change.
kstolp commented on 2023-01-07 09:31 (UTC)
If you receive this error when trying to build, it is because you have not imported the GPG keys used for verification.
You have two options:
1) Import the two keys into your keyring. ArchWiki article. You can find the key IDs in the PKGBUILD file, in the
validpgpkeys
array. (recommended)2) Alternatively, you can skip this verification by passing the
--skippgpcheck
argument tomakepkg
when building. (not recommended)