Package Details: zfs-linux-headers 2.2.7_6.12.8.arch1.1-1

Git Clone URL: https://aur.archlinux.org/zfs-linux.git (read-only, click to copy)
Package Base: zfs-linux
Description: Kernel headers for the Zettabyte File System.
Upstream URL: https://openzfs.org/
Keywords: kernel linux openzfs zfs
Licenses: CDDL
Conflicts: spl-dkms, spl-dkms-git, spl-headers, zfs-dkms, zfs-dkms-git, zfs-dkms-rc, zfs-headers
Provides: spl-headers, zfs-headers
Submitter: demizer
Maintainer: lightdot
Last Packager: lightdot
Votes: 273
Popularity: 1.87
First Submitted: 2016-04-21 08:45 (UTC)
Last Updated: 2025-01-04 04:03 (UTC)

Latest Comments

« First ‹ Previous 1 .. 71 72 73 74 75 76 77 78 79 Next › Last »

proxypoke commented on 2012-07-19 14:24 (UTC)

I'm currently having a slight problem: the zfs.ko module is missing, and I can't get ZFS to compile it. This means I can't generate an initramfs, which is sort of a big deal for me because my system runs on ZFS, and without zfs.ko in the initramfs, I can't boot. I suspect this is also related to the /usr/lib move, maybe in conjunction with the kernel update (I'm building against 3.4.5-1). Any ideas?

<deleted-account> commented on 2012-07-17 15:57 (UTC)

Made new patch, considering /lib -> /usr/lib move: http://pastebin.com/QC4k0d6W Also /usr/libexec/zfs is now /usr/lib/zfs. One issue with /lib still remains - spl & zfs installs modules into /lib/modules/... Do not know now how to fix this.

<deleted-account> commented on 2012-07-17 10:38 (UTC)

> The cd ../../ line is missing and leads to the failed stat call. This is not because of glibc! This is because error in PKGBIULD, I think. And it is better change to this instead of "cd ../../": install -D -m644 $srcdir/zfs.initcpio.hook "$pkgdir"/lib/initcpio/hooks/zfs install -D -m644 $srcdir/zfs.initcpio.install "$pkgdir"/lib/initcpio/install/zfs I have posted this already.

<deleted-account> commented on 2012-07-17 07:58 (UTC)

After upgrading glibc and using the new /usr/lib scheme, installing ifs complains: "install: cannot stat ‘zfs.initcpio.hook’: No such file or directory". SOLUTION: Change the PKGBUILD's package() from: package() { cd "$srcdir/$pkgname-${pkgver//_/-}" make DESTDIR="$pkgdir" install install -D -m644 zfs.initcpio.hook "$pkgdir"/lib/initcpio/hooks/zfs install -D -m644 zfs.initcpio.install "$pkgdir"/lib/initcpio/install/zfs } to: package() { cd "$srcdir/$pkgname-${pkgver//_/-}" make DESTDIR="$pkgdir" install cd ../../ install -D -m644 zfs.initcpio.hook "$pkgdir"/lib/initcpio/hooks/zfs install -D -m644 zfs.initcpio.install "$pkgdir"/lib/initcpio/install/zfs } The cd ../../ line is missing and leads to the failed stat call.

<deleted-account> commented on 2012-07-14 23:39 (UTC)

After upgrading glibc and using the new /usr/lib scheme, installing ifs complains: "install: cannot stat ‘zfs.initcpio.hook’: No such file or directory".

chneukirchen commented on 2012-07-14 21:28 (UTC)

/usr/libexec should not be used in Arch.

<deleted-account> commented on 2012-07-11 06:12 (UTC)

Thank You. I think its my fault with bad copy-pasting. Maybe I have done it from "less" output. BTW for them who interested. Here is issue I have opened about bad configure: https://github.com/zfsonlinux/zfs/issues/799 May be somebody will want to comment too. I have wrote email now asking to review it.

proxypoke commented on 2012-07-11 02:15 (UTC)

For anyone using green's patch: it has spaces instead of tabs in the configure.ac section, which causes it to fail to apply. I suspect this is an issue with pastebin, so I took the liberty of reposting it as a gist with corrected tabs (link to the raw, wget-able): https://raw.github.com/gist/3087494/92165ec9a49eb218cfb1e34dff349d72d0458fcc/zfs_aur.patch

<deleted-account> commented on 2012-06-30 20:24 (UTC)

I have to make this changes to make it work properly: http://pastebin.com/SDZyYE1h Summary: 1) Patch configure.ac, to handle all *.in files - this is upstream bug, I have already submited it. Because of this uder rules files were not updated witch correct pathes to binaries. 2) Fix udev dir from /usr/lib/udev to /lib/udev. 3) Fix installs of zfs.initcpio.* 4) Fix mount.zfs location in zfs.initcpio.install

codekoala commented on 2012-06-26 15:57 (UTC)

It might be useful to set the spl dependency to use >= instead of =. I had a cyclic dependency problem for quite a while before I decided to put effort into fixing it. When I would try to install the updated spl package that the updated zfs wanted, it would complain that zfs wanted the prior version (because that package had the "spl=" dependency). I had to uninstall both packages and then reinstall zfs, but this time I set it to use spl>=... :D