Package Details: zfs-linux 2.2.6_6.10.10.arch1.1-1

Git Clone URL: https://aur.archlinux.org/zfs-linux.git (read-only, click to copy)
Package Base: zfs-linux
Description: Kernel modules for the Zettabyte File System.
Upstream URL: https://openzfs.org/
Keywords: kernel linux zfs
Licenses: CDDL
Groups: archzfs-linux
Conflicts: spl-dkms, spl-dkms-git, spl-linux, zfs-dkms, zfs-dkms-git, zfs-dkms-rc, zfs-linux-git, zfs-linux-rc
Provides: spl, zfs
Replaces: spl-linux
Submitter: demizer
Maintainer: lightdot
Last Packager: lightdot
Votes: 271
Popularity: 1.18
First Submitted: 2016-04-21 08:45 (UTC)
Last Updated: 2024-10-23 12:35 (UTC)

Required by (19)

Sources (1)

Latest Comments

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

kylef commented on 2012-07-23 22:59 (UTC)

I have updated this package for full /usr/lib support, this includes moving the zfs.ko to the new locations. You can find a full diff at https://github.com/kylef/ark/commit/3a30094772d7994d6859e24ff1941b4f5222cc04 There are also x86_64 binary packages available. This is on my repo "ark" # /etc/pacman.conf [ark] SigLevel = Required Server = http://ark.kylefuller.co.uk/$arch/ Note, you will need to add my GPG key (E1650558) pacman-key -r E1650558 pacman-key --lsign-key E1650558 @proxypoke, could you try again with the latest changes.

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

The problem isn't that I can't compile it, it's that I can compile it just fine, but it won't generate the zfs.ko module. I have no idea why. I tried explicitly configuring with --with-config=all, but to no avail. As soon as I have time and access to a live boot medium (probably tomorrow), I will try some other things, but right now I just need my laptop. I suspect that I am missing something entirely obvious.

<deleted-account> commented on 2012-07-19 18:28 (UTC)

If your laptop is running, then why you can not make zfs now? What problem you have?

proxypoke commented on 2012-07-19 17:39 (UTC)

That's nice to know, though I will probably use the same approach as when I installed my laptop (installing ZFS in the tmpfs, then bootstrap/chroot). Also, as of right now, the laptop is still running, I just can't *re*boot. ;)

<deleted-account> commented on 2012-07-19 16:47 (UTC)

You can try to use Gentoo 12.1 LiveDVD - they have zfs on it.

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.