* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo [not found] ` <lMRH5-3hw-45@gated-at.bofh.it> @ 2013-08-31 12:08 ` Gregory Shearman 2013-08-31 12:19 ` Joerg Schilling 0 siblings, 1 reply; 41+ messages in thread From: Gregory Shearman @ 2013-08-31 12:08 UTC (permalink / raw To: gentoo-user In linux.gentoo.user, Mr Schilling wrote: > > On Solaris, you can disable loading unsigned modules, is this not supported by > Linux? CONFIG_MODULE_SIG -- Regards, Gregory. ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 12:08 ` Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo Gregory Shearman @ 2013-08-31 12:19 ` Joerg Schilling 2013-09-01 0:13 ` Walter Dnes 0 siblings, 1 reply; 41+ messages in thread From: Joerg Schilling @ 2013-08-31 12:19 UTC (permalink / raw To: gentoo-user Gregory Shearman <zekeyg@gmail.com> wrote: > In linux.gentoo.user, Mr Schilling wrote: > > > > On Solaris, you can disable loading unsigned modules, is this not supported by > > Linux? > > CONFIG_MODULE_SIG So there seems to be no real need to create a static linux kernel with ZFS inside. Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 12:19 ` Joerg Schilling @ 2013-09-01 0:13 ` Walter Dnes 2013-09-01 0:36 ` Canek Peláez Valdés ` (2 more replies) 0 siblings, 3 replies; 41+ messages in thread From: Walter Dnes @ 2013-09-01 0:13 UTC (permalink / raw To: gentoo-user On Sat, Aug 31, 2013 at 02:19:56PM +0200, Joerg Schilling wrote > So there seems to be no real need to create a static linux kernel > with ZFS inside. See http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?full=1#book_part1_chap7 > Now go to File Systems and select support for the filesystems you use. > Don't compile the file system you use for the root filesystem as > module, otherwise your Gentoo system will not be able to mount > your partition. You can get away with most stuff as modules; ***BUT NOT THE ROOT FILESYSTEM***. Think about it for a minute. Gentoo reads modules off the disk. If the code for the root filesystem is a module, Gentoo would have to read the module off the disk to enable it to read the module off the disk... OOPS. This is a classic "chicken and egg" situation. -- Walter Dnes <waltdnes@waltdnes.org> I don't run "desktop environments"; I run useful applications ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 0:13 ` Walter Dnes @ 2013-09-01 0:36 ` Canek Peláez Valdés 2013-09-01 3:55 ` Walter Dnes 2013-09-01 0:51 ` Mark David Dumlao 2013-09-01 7:49 ` Joerg Schilling 2 siblings, 1 reply; 41+ messages in thread From: Canek Peláez Valdés @ 2013-09-01 0:36 UTC (permalink / raw To: gentoo-user On Sat, Aug 31, 2013 at 7:13 PM, Walter Dnes <waltdnes@waltdnes.org> wrote: > On Sat, Aug 31, 2013 at 02:19:56PM +0200, Joerg Schilling wrote > >> So there seems to be no real need to create a static linux kernel >> with ZFS inside. > > See http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?full=1#book_part1_chap7 > >> Now go to File Systems and select support for the filesystems you use. >> Don't compile the file system you use for the root filesystem as >> module, otherwise your Gentoo system will not be able to mount >> your partition. > > You can get away with most stuff as modules; ***BUT NOT THE ROOT > FILESYSTEM***. Think about it for a minute. Gentoo reads modules off > the disk. If the code for the root filesystem is a module, Gentoo would > have to read the module off the disk to enable it to read the module off > the disk... OOPS. This is a classic "chicken and egg" situation. I usally use ext4 as filesystem. # lsmod|grep ext ext3 100768 0 jbd 39586 1 ext3 ext2 49572 0 ext4 263621 1 crc16 1255 2 ext4,bluetooth mbcache 4450 3 ext2,ext3,ext4 jbd2 48679 1 ext4 Isn't great what an initramfs can do? Regards. -- Canek Peláez Valdés Posgrado en Ciencia e Ingeniería de la Computación Universidad Nacional Autónoma de México ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 0:36 ` Canek Peláez Valdés @ 2013-09-01 3:55 ` Walter Dnes 2013-09-01 4:31 ` Canek Peláez Valdés ` (2 more replies) 0 siblings, 3 replies; 41+ messages in thread From: Walter Dnes @ 2013-09-01 3:55 UTC (permalink / raw To: gentoo-user > I usally use ext4 as filesystem. > > # lsmod|grep ext > ext3 100768 0 > jbd 39586 1 ext3 > ext2 49572 0 > ext4 263621 1 > crc16 1255 2 ext4,bluetooth > mbcache 4450 3 ext2,ext3,ext4 > jbd2 48679 1 ext4 > > Isn't great what an initramfs can do? In this case, initramfs is your root filesystem, from which you load another fs and then transfer (pivot root?) to it. You have to build initramfs support into the kernel, to boot an initramfs. So my argument still stands, regardless of whether your *INITIAL* filesystem is ext4fs, or ZFS, or initramfs, that *INITIAL* filesystem has to be built into the kernel. Also, I really wonder what the point is in having to use initramfs on a system where /usr is part of /. -- Walter Dnes <waltdnes@waltdnes.org> I don't run "desktop environments"; I run useful applications ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 3:55 ` Walter Dnes @ 2013-09-01 4:31 ` Canek Peláez Valdés 2013-09-01 14:30 ` Tanstaafl 2013-09-01 5:41 ` Integrated ZFS for Gentoo - WAS " Mark David Dumlao 2013-09-01 14:11 ` Tanstaafl 2 siblings, 1 reply; 41+ messages in thread From: Canek Peláez Valdés @ 2013-09-01 4:31 UTC (permalink / raw To: gentoo-user On Sat, Aug 31, 2013 at 10:55 PM, Walter Dnes <waltdnes@waltdnes.org> wrote: >> I usally use ext4 as filesystem. >> >> # lsmod|grep ext >> ext3 100768 0 >> jbd 39586 1 ext3 >> ext2 49572 0 >> ext4 263621 1 >> crc16 1255 2 ext4,bluetooth >> mbcache 4450 3 ext2,ext3,ext4 >> jbd2 48679 1 ext4 >> >> Isn't great what an initramfs can do? > > In this case, initramfs is your root filesystem, from which you load > another fs and then transfer (pivot root?) to it. You have to build > initramfs support into the kernel, to boot an initramfs. So my argument > still stands, regardless of whether your *INITIAL* filesystem is ext4fs, > or ZFS, or initramfs, that *INITIAL* filesystem has to be built into the > kernel. Interesting perspective. Of course, support for an initramfs is not actually a file system (it's not even in the File systems section of the kernel configuration, is in General setup); it's not possible to have initramfs as a module (that would make no sense at all); and it's code that is several orders of magnitude more simpler than the one used by ext4 (or any other journal file system). But you are right that for booting with an initramfs, you need initramfs support. > Also, I really wonder what the point is in having to use > initramfs on a system where /usr is part of /. Well, since some months ago I've been running as a module almost everything that can be compiled as a module. This allows me to run a *truly* minimal kernel, and only the necessary modules autoload automatically (one big exception: binfmt_script, I compiled that into the kernel because it was not loading automatically). I can also unload some modules when not in use anymore (and this is great to debug sometimes). This also lets me to add a lot of stuff in the kernel, as long as I add them as modules, without me worrying about bloating my kernel. Only when they are needed they are loaded. I have USB speakers, but I almost never use them; no problem, they (like almost everything else) live as modules, and only are loaded (automagically, thanks to udev) when needed. And again, I can unload them when not in use. And also, it turns out that by using dracut+systemd you could boot faster than without initramfs (although I can't find the link anymore). Finally, using only modules and dracut liberates me from thinking what should it be compiled in and what not; I just put *everything* as a module, and the kernel, udev and dracut take care of loading what's necessary. Thus, my kernel (the one running in memory) is as minimal as it can be, all the time. Oh, and one more thing; by having everything as a module, if suddenly I need support for new hardware, usually I can do a quick "make menuconfig; make modules_install", and the new module can be modprobe'd into the kernel without needing a reboot. That's convenient. Regards. -- Canek Peláez Valdés Posgrado en Ciencia e Ingeniería de la Computación Universidad Nacional Autónoma de México ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 4:31 ` Canek Peláez Valdés @ 2013-09-01 14:30 ` Tanstaafl 2013-09-01 14:47 ` Alan McKinnon 2013-09-03 14:58 ` Douglas J Hunley 0 siblings, 2 replies; 41+ messages in thread From: Tanstaafl @ 2013-09-01 14:30 UTC (permalink / raw To: gentoo-user On 2013-09-01 12:31 AM, Canek Peláez Valdés <caneko@gmail.com> wrote: > Of course, support for an initramfs is not actually a file system > (it's not even in the File systems section of the kernel > configuration, is in General setup); it's not possible to have > initramfs as a module (that would make no sense at all); and it's > code that is several orders of magnitude more simpler than the one > used by ext4 (or any other journal file system). Is there any reason that the creation, use and maintenance of the initramfs couldn't be as simple as a checkbox in the kernel config, so that running 'make' after the kernel was configured would automatically build it? Then, all I'd have to do is move it into /boot along with the new kernel (just like I do now), with *nothing* else required, and the kernel would call it, and things would just work (as long as it was there and I didn't forget to copy it to /boot). ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 14:30 ` Tanstaafl @ 2013-09-01 14:47 ` Alan McKinnon 2013-09-03 14:58 ` Douglas J Hunley 1 sibling, 0 replies; 41+ messages in thread From: Alan McKinnon @ 2013-09-01 14:47 UTC (permalink / raw To: gentoo-user On 01/09/2013 16:30, Tanstaafl wrote: > On 2013-09-01 12:31 AM, Canek Peláez Valdés <caneko@gmail.com> wrote: >> Of course, support for an initramfs is not actually a file system >> (it's not even in the File systems section of the kernel >> configuration, is in General setup); it's not possible to have >> initramfs as a module (that would make no sense at all); and it's >> code that is several orders of magnitude more simpler than the one >> used by ext4 (or any other journal file system). > > Is there any reason that the creation, use and maintenance of the > initramfs couldn't be as simple as a checkbox in the kernel config, so > that running 'make' after the kernel was configured would automatically > build it? Then, all I'd have to do is move it into /boot along with the > new kernel (just like I do now), with *nothing* else required, and the > kernel would call it, and things would just work (as long as it was > there and I didn't forget to copy it to /boot). That would require a config file of some sort to define what files you want in the initramfs, and it must be available to the kernel build process. It also has to read your self-defined arbitrary stuff from your userland. The kernel build machinery is a self-contained environment, the kernel devs work very hard to keep userland out of it. So expect Linux to shoot you down in flames for the very suggestion. You keep asking for tools to automate the production of an initramfs; you should realize that the thing has got absolutely nothing to do with building and running a kernel, it's a helper function, and not really tied to the kernel per se. Just rig your kernel update process to add a section where you run the command that builds an initramfs. You already have so many steps where you do exactly that in other areas so it's not a realistic issue, and you take that in your stride. Or at it to the end of your kernel build wrapper script if you wrote such a thing for yourself. -- Alan McKinnon alan.mckinnon@gmail.com ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 14:30 ` Tanstaafl 2013-09-01 14:47 ` Alan McKinnon @ 2013-09-03 14:58 ` Douglas J Hunley 2013-09-04 1:20 ` Dale 1 sibling, 1 reply; 41+ messages in thread From: Douglas J Hunley @ 2013-09-03 14:58 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 1095 bytes --] On Sun, Sep 1, 2013 at 10:30 AM, Tanstaafl <tanstaafl@libertytrek.org>wrote: > Is there any reason that the creation, use and maintenance of the > initramfs couldn't be as simple as a checkbox in the kernel config, so that > running 'make' after the kernel was configured would automatically build > it? Then, all I'd have to do is move it into /boot along with the new > kernel (just like I do now), with *nothing* else required, and the kernel > would call it, and things would just work (as long as it was there and I > didn't forget to copy it to /boot). This exists. You can built initramfs right into the kernel. I've been doing it here for quite some time. You just tell the kernel either: * where to find a filespec so it knows what to include in the initramfs * what directory contains everything you want in the initramfs and then the kernel builds is and attaches it to itself during 'make' It's actually pretty trivial -- Douglas J Hunley (doug.hunley@gmail.com) Twitter: @hunleyd Web: douglasjhunley.com G+: http://goo.gl/sajR3 [-- Attachment #2: Type: text/html, Size: 1845 bytes --] ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-03 14:58 ` Douglas J Hunley @ 2013-09-04 1:20 ` Dale 0 siblings, 0 replies; 41+ messages in thread From: Dale @ 2013-09-04 1:20 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 1548 bytes --] Douglas J Hunley wrote: > > On Sun, Sep 1, 2013 at 10:30 AM, Tanstaafl <tanstaafl@libertytrek.org > <mailto:tanstaafl@libertytrek.org>> wrote: > > Is there any reason that the creation, use and maintenance of the > initramfs couldn't be as simple as a checkbox in the kernel > config, so that running 'make' after the kernel was configured > would automatically build it? Then, all I'd have to do is move it > into /boot along with the new kernel (just like I do now), with > *nothing* else required, and the kernel would call it, and things > would just work (as long as it was there and I didn't forget to > copy it to /boot). > > > This exists. You can built initramfs right into the kernel. I've been > doing it here for quite some time. You just tell the kernel either: > * where to find a filespec so it knows what to include in the initramfs > * what directory contains everything you want in the initramfs > > and then the kernel builds is and attaches it to itself during 'make' > > It's actually pretty trivial > > > -- > Douglas J Hunley (doug.hunley@gmail.com <mailto:doug.hunley@gmail.com>) > Twitter: @hunleyd Web: > douglasjhunley.com <http://douglasjhunley.com> > G+: http://goo.gl/sajR3 I tried that a while back. Followed a howto step by step, Gentoo one I think, and it never worked, not even once. Trivial, not hardly. Dale :-) :-) -- I am only responsible for what I said ... Not for what you understood or how you interpreted my words! [-- Attachment #2: Type: text/html, Size: 3146 bytes --] ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 3:55 ` Walter Dnes 2013-09-01 4:31 ` Canek Peláez Valdés @ 2013-09-01 5:41 ` Mark David Dumlao 2013-09-02 4:44 ` Walter Dnes 2013-09-01 14:11 ` Tanstaafl 2 siblings, 1 reply; 41+ messages in thread From: Mark David Dumlao @ 2013-09-01 5:41 UTC (permalink / raw To: gentoo-user On Sun, Sep 1, 2013 at 11:55 AM, Walter Dnes <waltdnes@waltdnes.org> wrote: >> I usally use ext4 as filesystem. >> >> # lsmod|grep ext >> ext3 100768 0 >> jbd 39586 1 ext3 >> ext2 49572 0 >> ext4 263621 1 >> crc16 1255 2 ext4,bluetooth >> mbcache 4450 3 ext2,ext3,ext4 >> jbd2 48679 1 ext4 >> >> Isn't great what an initramfs can do? > > In this case, initramfs is your root filesystem, from which you load > another fs and then transfer (pivot root?) to it. You have to build > initramfs support into the kernel, to boot an initramfs. So my argument > still stands, regardless of whether your *INITIAL* filesystem is ext4fs, > or ZFS, or initramfs, that *INITIAL* filesystem has to be built into the > kernel. Also, I really wonder what the point is in having to use > initramfs on a system where /usr is part of /. It allows you to keep some kernel bits in modules. If ever you change your mind on whether to include / exclude / reconfigure those kernel bits in the future, your kernel recompile will take a lot, lot, shorter. Case in point - do you enable all the ext4 options, like acls and whatnot? Let's say no. What if you suddenly have to mount an external hard disk to recover some system on your server and the hard disk uses those ext4 options? If ext4 is hard built into your kernel, your recompile will have to basically redo the whole thing, whereas if ext4 was a module you would only recompile ext4 itself. -- This email is: [ ] actionable [x] fyi [ ] social Response needed: [ ] yes [ ] up to you [x] no Time-sensitive: [ ] immediate [ ] soon [x] none ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 5:41 ` Integrated ZFS for Gentoo - WAS " Mark David Dumlao @ 2013-09-02 4:44 ` Walter Dnes 0 siblings, 0 replies; 41+ messages in thread From: Walter Dnes @ 2013-09-02 4:44 UTC (permalink / raw To: gentoo-user On Sun, Sep 01, 2013 at 01:41:30PM +0800, Mark David Dumlao wrote > Case in point - do you enable all the ext4 options, like acls and > whatnot? Let's say no. > > What if you suddenly have to mount an external hard disk to > recover some system on your server and the hard disk uses those ext4 > options? If ext4 is hard built into your kernel, your recompile will > have to basically redo the whole thing, whereas if ext4 was a module > you would only recompile ext4 itself. Have you ever actually done this? I'd be very leery of pulling such a stunt. The clean way of switching module versions is to... * unload the old module, and * load the new module You obviously can't do this in your setup, because unloading the old module would mean you could no longer access the file system to read in the new module... OOPS. You could run a script that creates /dev/shm/lib/3.1.4.1.5.9-gentoo/ (easy as pie<G>) and copies the new module to that dir. Then unload the old module and load the new one, using modprobe with "-d /dev/shm/". That still looks impossible. The problem is that you generally have a whole bunch of files open at any time. E.g. try... lsof -d txt | grep -v "/proc/" | less ...and look at the output. Shutting down all those open files would be disastrous. But that's not what you're saying. You seem to imply that file system code can be overwritten *IN PLACE, WHILE IN USE*, without any problems. Colour me skeptical about that one. -- Walter Dnes <waltdnes@waltdnes.org> I don't run "desktop environments"; I run useful applications ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 3:55 ` Walter Dnes 2013-09-01 4:31 ` Canek Peláez Valdés 2013-09-01 5:41 ` Integrated ZFS for Gentoo - WAS " Mark David Dumlao @ 2013-09-01 14:11 ` Tanstaafl 2013-09-02 4:09 ` Walter Dnes 2 siblings, 1 reply; 41+ messages in thread From: Tanstaafl @ 2013-09-01 14:11 UTC (permalink / raw To: gentoo-user On 2013-08-31 11:55 PM, Walter Dnes <waltdnes@waltdnes.org> wrote: > Also, I really wonder what the point is in having to use > initramfs on a system where /usr is part of /. You don't, it is only *required* if you have a separate /usr... in fact that is what the whole argument was about. At least that is my understanding of the situation now... please don't tell me I'm wrong and there was another vote and it is now required just to be able to use gentoo? ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 14:11 ` Tanstaafl @ 2013-09-02 4:09 ` Walter Dnes 0 siblings, 0 replies; 41+ messages in thread From: Walter Dnes @ 2013-09-02 4:09 UTC (permalink / raw To: gentoo-user On Sun, Sep 01, 2013 at 10:11:01AM -0400, Tanstaafl wrote > You don't, it is only *required* if you have a separate /usr... in fact > that is what the whole argument was about. > > At least that is my understanding of the situation now... please don't > tell me I'm wrong and there was another vote and it is now required just > to be able to use gentoo? This is for the people who want *EVERYTHING INCLUDING THE ROOT FILE SYSTEM CODE* built as a module. Note that the Gentoo (AMD64) docs at http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?full=1#book_part1_chap7say... > Don't compile the file system you use for the root filesystem as > module, otherwise your Gentoo system will not be able to mount > your partition. Using an initramfs allows you to ignore that warning. -- Walter Dnes <waltdnes@waltdnes.org> I don't run "desktop environments"; I run useful applications ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 0:13 ` Walter Dnes 2013-09-01 0:36 ` Canek Peláez Valdés @ 2013-09-01 0:51 ` Mark David Dumlao 2013-09-01 3:43 ` Pandu Poluan 2013-09-01 7:49 ` Joerg Schilling 2 siblings, 1 reply; 41+ messages in thread From: Mark David Dumlao @ 2013-09-01 0:51 UTC (permalink / raw To: gentoo-user On Sun, Sep 1, 2013 at 8:13 AM, Walter Dnes <waltdnes@waltdnes.org> wrote: > On Sat, Aug 31, 2013 at 02:19:56PM +0200, Joerg Schilling wrote > >> So there seems to be no real need to create a static linux kernel >> with ZFS inside. > > See http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?full=1#book_part1_chap7 > >> Now go to File Systems and select support for the filesystems you use. >> Don't compile the file system you use for the root filesystem as >> module, otherwise your Gentoo system will not be able to mount >> your partition. > > You can get away with most stuff as modules; ***BUT NOT THE ROOT > FILESYSTEM***. Think about it for a minute. Gentoo reads modules off > the disk. If the code for the root filesystem is a module, Gentoo would > have to read the module off the disk to enable it to read the module off > the disk... OOPS. This is a classic "chicken and egg" situation. And this is why the initrd was actually invented. http://en.wikipedia.org/wiki/Initrd It's a means of loading kernel modules so that the root filesystem can be mounted as a module. -- This email is: [ ] actionable [x] fyi [ ] social Response needed: [ ] yes [ ] up to you [x] no Time-sensitive: [ ] immediate [ ] soon [x] none ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 0:51 ` Mark David Dumlao @ 2013-09-01 3:43 ` Pandu Poluan 0 siblings, 0 replies; 41+ messages in thread From: Pandu Poluan @ 2013-09-01 3:43 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 1483 bytes --] On Sep 1, 2013 7:51 AM, "Mark David Dumlao" <madumlao@gmail.com> wrote: > > On Sun, Sep 1, 2013 at 8:13 AM, Walter Dnes <waltdnes@waltdnes.org> wrote: > > On Sat, Aug 31, 2013 at 02:19:56PM +0200, Joerg Schilling wrote > > > >> So there seems to be no real need to create a static linux kernel > >> with ZFS inside. > > > > See http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?full=1#book_part1_chap7 > > > >> Now go to File Systems and select support for the filesystems you use. > >> Don't compile the file system you use for the root filesystem as > >> module, otherwise your Gentoo system will not be able to mount > >> your partition. > > > > You can get away with most stuff as modules; ***BUT NOT THE ROOT > > FILESYSTEM***. Think about it for a minute. Gentoo reads modules off > > the disk. If the code for the root filesystem is a module, Gentoo would > > have to read the module off the disk to enable it to read the module off > > the disk... OOPS. This is a classic "chicken and egg" situation. > > And this is why the initrd was actually invented. > http://en.wikipedia.org/wiki/Initrd > > It's a means of loading kernel modules so that the root filesystem can be > mounted as a module. Not everyone is willing to use an initr* thingy. It's another potential breaking point. I have no problem with /usr being 'merged' with /, in fact I have been doing that for a couple of years now. But I will keep myself a mile away from an initr* thingy. Rgds, -- [-- Attachment #2: Type: text/html, Size: 2140 bytes --] ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 0:13 ` Walter Dnes 2013-09-01 0:36 ` Canek Peláez Valdés 2013-09-01 0:51 ` Mark David Dumlao @ 2013-09-01 7:49 ` Joerg Schilling 2013-09-01 21:19 ` Walter Dnes 2 siblings, 1 reply; 41+ messages in thread From: Joerg Schilling @ 2013-09-01 7:49 UTC (permalink / raw To: gentoo-user Walter Dnes <waltdnes@waltdnes.org> wrote: > You can get away with most stuff as modules; ***BUT NOT THE ROOT > FILESYSTEM***. Think about it for a minute. Gentoo reads modules off > the disk. If the code for the root filesystem is a module, Gentoo would > have to read the module off the disk to enable it to read the module off > the disk... OOPS. This is a classic "chicken and egg" situation. On Solaris no problem with loadable modules - everything is dynamically loaded. You need a grub that understands ZFS and that gives a ZFS interface to the kernel to use before ZFS was loaded. Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 7:49 ` Joerg Schilling @ 2013-09-01 21:19 ` Walter Dnes 2013-09-02 4:43 ` Mark David Dumlao 0 siblings, 1 reply; 41+ messages in thread From: Walter Dnes @ 2013-09-01 21:19 UTC (permalink / raw To: gentoo-user On Sun, Sep 01, 2013 at 09:49:23AM +0200, Joerg Schilling wrote > Walter Dnes <waltdnes@waltdnes.org> wrote: > > > You can get away with most stuff as modules; ***BUT NOT THE ROOT > > FILESYSTEM***. Think about it for a minute. Gentoo reads modules off > > the disk. If the code for the root filesystem is a module, Gentoo would > > have to read the module off the disk to enable it to read the module off > > the disk... OOPS. This is a classic "chicken and egg" situation. > > On Solaris no problem with loadable modules - everything is > dynamically loaded. ***YOU NEED A GRUB THAT UNDERSTANDS ZFS AND THAT > GIVES A ZFS INTERFACE TO THE KERNEL TO USE BEFORE ZFS WAS LOADED***. So instead of needing ZFS built into the kernel, you need ZFS built into GRUB... ***AND*** you need a ZFS module for the main system... ***AND*** you need to keep both versions in sync. I'm not impressed. -- Walter Dnes <waltdnes@waltdnes.org> I don't run "desktop environments"; I run useful applications ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-01 21:19 ` Walter Dnes @ 2013-09-02 4:43 ` Mark David Dumlao 2013-09-02 8:47 ` Joerg Schilling 0 siblings, 1 reply; 41+ messages in thread From: Mark David Dumlao @ 2013-09-02 4:43 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: text/plain, Size: 1155 bytes --] On Sep 2, 2013 5:21 AM, "Walter Dnes" <waltdnes@waltdnes.org> wrote: > > On Sun, Sep 01, 2013 at 09:49:23AM +0200, Joerg Schilling wrote > > Walter Dnes <waltdnes@waltdnes.org> wrote: > > > > > You can get away with most stuff as modules; ***BUT NOT THE ROOT > > > FILESYSTEM***. Think about it for a minute. Gentoo reads modules off > > > the disk. If the code for the root filesystem is a module, Gentoo would > > > have to read the module off the disk to enable it to read the module off > > > the disk... OOPS. This is a classic "chicken and egg" situation. > > > > On Solaris no problem with loadable modules - everything is > > dynamically loaded. ***YOU NEED A GRUB THAT UNDERSTANDS ZFS AND THAT > > GIVES A ZFS INTERFACE TO THE KERNEL TO USE BEFORE ZFS WAS LOADED***. I'm confused as to what this means. Grub reads a filesystem, loads a kernel with options, and may give it an initrd. What happens from then on is none of grub's business. The filesystem it reads from and the one the kernel uses may be completely unrelated - this is why we have /boot filesystems. At what point does grub "present a zfs interface for the kernel to use"? [-- Attachment #2: Type: text/html, Size: 1479 bytes --] ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-02 4:43 ` Mark David Dumlao @ 2013-09-02 8:47 ` Joerg Schilling 2013-09-04 2:54 ` Walter Dnes ` (2 more replies) 0 siblings, 3 replies; 41+ messages in thread From: Joerg Schilling @ 2013-09-02 8:47 UTC (permalink / raw To: gentoo-user Mark David Dumlao <madumlao@gmail.com> wrote: > > > > the disk... OOPS. This is a classic "chicken and egg" situation. > > > > > > On Solaris no problem with loadable modules - everything is > > > dynamically loaded. ***YOU NEED A GRUB THAT UNDERSTANDS ZFS AND THAT > > > GIVES A ZFS INTERFACE TO THE KERNEL TO USE BEFORE ZFS WAS LOADED***. > > I'm confused as to what this means. Grub reads a filesystem, loads a kernel > with options, and may give it an initrd. What happens from then on is none > of grub's business. The filesystem it reads from and the one the kernel > uses may be completely unrelated - this is why we have /boot filesystems. > > At what point does grub "present a zfs interface for the kernel to use"? After it booted the kernel You may not know dynamic kernels as Linux is a static kernel that just may load additional modules _after_ it mounted the root fs. Solaris is dynamic from the beginning: - no static loading at all - no predefined data sizes - everything is allocated - no predefined major device numbers - numbers are assigned at first load Grub works this way: 1) It loads /platform/i86pc/kernel/$ISADIR/unix 2) It checks the file "unix" and sees ELF dependencies. It loads the ELF dependencies (genunix and dtracestubs) listed in the ELF headers from "unix". 3) It loads /platform/i86pc/$ISADIR/boot_archive The Kernel then uses the filesystem callbacks in grub to load modules from the filesystem in the boot archive. After the kernel did mount the root filesystem, it switches to the normal kernel drivers just loaded and frees the memory space used by grub before. Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-02 8:47 ` Joerg Schilling @ 2013-09-04 2:54 ` Walter Dnes 2013-09-04 11:25 ` Joerg Schilling 2013-09-04 6:49 ` Integrated ZFS for Gentoo - WAS Re: [gentoo-user] " Marc Stürmer 2013-09-04 11:53 ` Mark David Dumlao 2 siblings, 1 reply; 41+ messages in thread From: Walter Dnes @ 2013-09-04 2:54 UTC (permalink / raw To: gentoo-user On Mon, Sep 02, 2013 at 10:47:35AM +0200, Joerg Schilling wrote > Mark David Dumlao <madumlao@gmail.com> wrote: > > At what point does grub "present a zfs interface for the kernel to use"? > > After it booted the kernel > > You may not know dynamic kernels as Linux is a static kernel that > just may load additional modules _after_ it mounted the root fs. > > Solaris is dynamic from the beginning: > > - no static loading at all > > - no predefined data sizes - everything is allocated > > - no predefined major device numbers - numbers are assigned at first load > > Grub works this way: > > 1) It loads /platform/i86pc/kernel/$ISADIR/unix Question... how does it read that file off a ZFS partition? OK, so ZFS code has to be installed statically into GRUB instead of statically into the kernel. Please stop the shell game. Note also that this is a Gentoo *LINUX* mailing list. We're more concerned about how Linux works. -- Walter Dnes <waltdnes@waltdnes.org> I don't run "desktop environments"; I run useful applications ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-04 2:54 ` Walter Dnes @ 2013-09-04 11:25 ` Joerg Schilling 2013-09-04 12:36 ` Integrated ZFS for Gentoo - WAS " Nicolas Sebrecht 0 siblings, 1 reply; 41+ messages in thread From: Joerg Schilling @ 2013-09-04 11:25 UTC (permalink / raw To: gentoo-user Walter Dnes <waltdnes@waltdnes.org> wrote: > > Grub works this way: > > > > 1) It loads /platform/i86pc/kernel/$ISADIR/unix > > Question... how does it read that file off a ZFS partition? OK, so > ZFS code has to be installed statically into GRUB instead of statically > into the kernel. Please stop the shell game. Grub was enhanced by Sun to understand ZFS. You need such an enhanced grub if you like to boot off ZFS. > Note also that this is a Gentoo *LINUX* mailing list. We're more > concerned about how Linux works. Linux does not contain code to boot AFAIK.... Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re:[gentoo-user] Optional /usr merge in Gentoo 2013-09-04 11:25 ` Joerg Schilling @ 2013-09-04 12:36 ` Nicolas Sebrecht 0 siblings, 0 replies; 41+ messages in thread From: Nicolas Sebrecht @ 2013-09-04 12:36 UTC (permalink / raw To: gentoo-user; +Cc: Nicolas Sebrecht The 04/09/13, Joerg Schilling wrote: > Linux does not contain code to boot AFAIK.... Sure, it does. You can boot on the kernel directly without a boot manager. -- Nicolas Sebrecht ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-02 8:47 ` Joerg Schilling 2013-09-04 2:54 ` Walter Dnes @ 2013-09-04 6:49 ` Marc Stürmer 2013-09-05 10:04 ` Tanstaafl 2013-09-04 11:53 ` Mark David Dumlao 2 siblings, 1 reply; 41+ messages in thread From: Marc Stürmer @ 2013-09-04 6:49 UTC (permalink / raw To: gentoo-user Am 02.09.2013 10:47, schrieb Joerg Schilling: > Solaris is dynamic from the beginning: Well in my point of view it boils down to that: someone wants to use ZFS on Linux. Fine. This means you've got to be a good citizen and obey its license, of course. It is for those legal reasons that ZFS is not included into the Linux kernel mainline source tree. It is also for those reasons you got to compile it as a module. So somebody wants it being static into his kernel, modules being disabled on his machine because of security concerns. Unless he is going to do that stuff himself this is unlikely to ever happen. So it boils down to those possible solutions: a) writing that stuff himself (unlikely to happen), b) just using the module and going to be happy (also unlikely to happen as it seems), c) choosing another, native file system like Btrfs (which is still yet not production ready as a fast moving target) or going with something like XFS or Ext4 (and LVM), or the most natural choice then, which is d) choosing an operating system, which supports ZFS out of the box like FreeBSD and forget about all the rest of the problems. I would go for d and forget about all of the rest of the problems. FreeBSD has been around long enough, and is stable and mature enough for most anything you can throw at and it is a nice, clean, well structured system anyway. There's also Gentoo/FreeBSD around, but personally I would use the native ports system instead. ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-04 6:49 ` Integrated ZFS for Gentoo - WAS Re: [gentoo-user] " Marc Stürmer @ 2013-09-05 10:04 ` Tanstaafl 0 siblings, 0 replies; 41+ messages in thread From: Tanstaafl @ 2013-09-05 10:04 UTC (permalink / raw To: gentoo-user On 2013-09-04 2:49 AM, Marc Stürmer <mail@marc-stuermer.de> wrote: > Well in my point of view it boils down to that: someone wants to use ZFS > on Linux. Fine. This means you've got to be a good citizen and obey its > license, of course. > > It is for those legal reasons that ZFS is not included into the Linux > kernel mainline source tree. It is also for those reasons you got to > compile it as a module. One of the points made was that this is FUD, and that there is NO logel reason that it cannot be included. There is also the fact that it *could* be included, as long as it wasn't provided directly in the kernel sources, but as an overlay/patch type process, which could still be provided by the gentoo source repositories. ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-02 8:47 ` Joerg Schilling 2013-09-04 2:54 ` Walter Dnes 2013-09-04 6:49 ` Integrated ZFS for Gentoo - WAS Re: [gentoo-user] " Marc Stürmer @ 2013-09-04 11:53 ` Mark David Dumlao 2013-09-04 12:01 ` Joerg Schilling 2 siblings, 1 reply; 41+ messages in thread From: Mark David Dumlao @ 2013-09-04 11:53 UTC (permalink / raw To: gentoo-user On Mon, Sep 2, 2013 at 4:47 PM, Joerg Schilling <Joerg.Schilling@fokus.fraunhofer.de> wrote: > Mark David Dumlao <madumlao@gmail.com> wrote: > >> > > > the disk... OOPS. This is a classic "chicken and egg" situation. >> > > >> > > On Solaris no problem with loadable modules - everything is >> > > dynamically loaded. ***YOU NEED A GRUB THAT UNDERSTANDS ZFS AND THAT >> > > GIVES A ZFS INTERFACE TO THE KERNEL TO USE BEFORE ZFS WAS LOADED***. >> >> I'm confused as to what this means. Grub reads a filesystem, loads a kernel >> with options, and may give it an initrd. What happens from then on is none >> of grub's business. The filesystem it reads from and the one the kernel >> uses may be completely unrelated - this is why we have /boot filesystems. >> >> At what point does grub "present a zfs interface for the kernel to use"? > > After it booted the kernel > > You may not know dynamic kernels as Linux is a static kernel that just may load > additional modules _after_ it mounted the root fs. > > Solaris is dynamic from the beginning: Ah I see. But I think by default when we talk about "the kernel" on this mailing list, it's assumed that we're talking about Linux. And in the Linux case, Grub does not do anything like provide a filesystem interface to Linux. It just loads the kernel into memory, and passes it any arguments, like the initrd. So your grub needs to be able to read the filesystem containing the kernel and that's it. If the filesystem containing the kernel is also a zfs filesystem, then your grub needs a driver that can read that filesystem. Well sys-boot/grub-2.00 provides one. See /boot/grub/zfs.mod -- This email is: [ ] actionable [x] fyi [ ] social Response needed: [ ] yes [ ] up to you [x] no Time-sensitive: [ ] immediate [ ] soon [x] none ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-09-04 11:53 ` Mark David Dumlao @ 2013-09-04 12:01 ` Joerg Schilling 0 siblings, 0 replies; 41+ messages in thread From: Joerg Schilling @ 2013-09-04 12:01 UTC (permalink / raw To: gentoo-user Mark David Dumlao <madumlao@gmail.com> wrote: > containing the kernel is > also a zfs filesystem, then your grub needs a driver that can read > that filesystem. > > Well sys-boot/grub-2.00 provides one. See /boot/grub/zfs.mod You don't need grub2, a capable older grub does it also, see: http://hg.berlios.de/repos/schillix-on for a related source. Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo @ 2013-08-27 2:04 Thomas Mueller 2013-08-27 6:10 ` Alan McKinnon 0 siblings, 1 reply; 41+ messages in thread From: Thomas Mueller @ 2013-08-27 2:04 UTC (permalink / raw To: gentoo-user On the issue of whether ZFS can be shipped with the Linux kernel, FreeBSD includes ZFS with the kernel, binary and source. So does that mean it would be OK for Linux too? FreeBSD has a different license (BSD) than Linux (GPL 2 or 3). I am not a lawyer! Tom ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-27 2:04 Thomas Mueller @ 2013-08-27 6:10 ` Alan McKinnon 2013-08-27 7:53 ` Joerg Schilling 0 siblings, 1 reply; 41+ messages in thread From: Alan McKinnon @ 2013-08-27 6:10 UTC (permalink / raw To: gentoo-user On 27/08/2013 04:04, Thomas Mueller wrote: > On the issue of whether ZFS can be shipped with the Linux kernel, FreeBSD includes ZFS > with the kernel, binary and source. > > So does that mean it would be OK for Linux too? No. > FreeBSD has a different license (BSD) than Linux (GPL 2 or 3). Please read file COPYING in the kernel sources, the Linux kernel ships with license GPL-2 Not a later version at your choice (2.x) and certainly never GPL-3 The issue is that the Linux kernel devs consider the license terms for ZFS to be incompatible with GPL-2.0 and therefore ZFS cannot be redistributed as a Linux kernel module. There's nothing in the GPL-2 to stop you as a user from building and running ZFS on Linux, as GPL does not interfere with your right to run whatever you wish. The GPL only kicks in when code is redistributed. The BSD license has none of these conditions, in layman terms that license essentially says "you can take this code and pretty much do with it whatever you want, we don't care" > I am not a lawyer! > > Tom > > -- Alan McKinnon alan.mckinnon@gmail.com ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-27 6:10 ` Alan McKinnon @ 2013-08-27 7:53 ` Joerg Schilling 2013-08-27 8:37 ` Alan McKinnon 0 siblings, 1 reply; 41+ messages in thread From: Joerg Schilling @ 2013-08-27 7:53 UTC (permalink / raw To: gentoo-user Alan McKinnon <alan.mckinnon@gmail.com> wrote: > The issue is that the Linux kernel devs consider the license terms for > ZFS to be incompatible with GPL-2.0 and therefore ZFS cannot be > redistributed as a Linux kernel module. Isn't it strange that those people seem to have less problems with closed source than with a license that gives more freedom than the GPL? But you are correct that the problem seem to be humans and not a license text. > There's nothing in the GPL-2 to stop you as a user from building and > running ZFS on Linux, as GPL does not interfere with your right to run > whatever you wish. The GPL only kicks in when code is redistributed. There is nothing non-void in the GPL that stops you from distributing binaries. Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-27 7:53 ` Joerg Schilling @ 2013-08-27 8:37 ` Alan McKinnon 2013-08-27 9:08 ` Joerg Schilling 0 siblings, 1 reply; 41+ messages in thread From: Alan McKinnon @ 2013-08-27 8:37 UTC (permalink / raw To: gentoo-user On 27/08/2013 09:53, Joerg Schilling wrote: > Alan McKinnon <alan.mckinnon@gmail.com> wrote: > >> The issue is that the Linux kernel devs consider the license terms for >> ZFS to be incompatible with GPL-2.0 and therefore ZFS cannot be >> redistributed as a Linux kernel module. > > Isn't it strange that those people seem to have less problems with closed > source than with a license that gives more freedom than the GPL? But > you are correct that the problem seem to be humans and not a license text. You are aware that the GPL was not really intended to be used together with other licenses? It was really intended to create an entire operating system, all of which was 100% licensed as GPL, all of which comprise an original work written from scratch Stallman never makes this claim as bluntly as I've said it here, but it's the only intelligent reading of his intent as far as I can make out. This is why so many arguments arise over the GPL, the wording of that license was not really intended to have it co-exist with other licenses. That's how I see it anyway. > >> There's nothing in the GPL-2 to stop you as a user from building and >> running ZFS on Linux, as GPL does not interfere with your right to run >> whatever you wish. The GPL only kicks in when code is redistributed. > > There is nothing non-void in the GPL that stops you from distributing binaries. That's a question of packaging and bundling, which is not covered by the GPL. But kernel code and kernel modules are not mere bundles, they are derivative works by virtue of how tightly they integrate with the kernel, and how the code can only ever run unchanged on Linux. That is how ZFS as a fuse module works, no license issues with the kernel there at all. -- Alan McKinnon alan.mckinnon@gmail.com ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-27 8:37 ` Alan McKinnon @ 2013-08-27 9:08 ` Joerg Schilling 2013-08-27 20:36 ` Alan McKinnon 0 siblings, 1 reply; 41+ messages in thread From: Joerg Schilling @ 2013-08-27 9:08 UTC (permalink / raw To: gentoo-user Alan McKinnon <alan.mckinnon@gmail.com> wrote: > > Isn't it strange that those people seem to have less problems with closed > > source than with a license that gives more freedom than the GPL? But > > you are correct that the problem seem to be humans and not a license text. > > You are aware that the GPL was not really intended to be used together > with other licenses? It was really intended to create an entire > operating system, all of which was 100% licensed as GPL, all of which > comprise an original work written from scratch But it has been proven that you cannot create a 100% GPL OS. More than 50% of all Linux distros are under different licenses... > Stallman never makes this claim as bluntly as I've said it here, but > it's the only intelligent reading of his intent as far as I can make > out. This is why so many arguments arise over the GPL, the wording of > that license was not really intended to have it co-exist with other > licenses. Stallman does not look at reality. The first GCC version in 1986 has been published under something I call GPLv0 and this license did not permit a legal use of the GCC in public. The license was later converted to GPLv1 by using proposals I made but Stallman still only talks about what has been in GPLv0. > > There is nothing non-void in the GPL that stops you from distributing binaries. > > That's a question of packaging and bundling, which is not covered by the > GPL. But kernel code and kernel modules are not mere bundles, they are > derivative works by virtue of how tightly they integrate with the > kernel, and how the code can only ever run unchanged on Linux. If a kernel uses ZFS, you have to decide on whether the kernel is a derivative work of ZFS or whether just a collective work exists. _Using_ ZFS definitely does not make ZFS a derivative work. Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-27 9:08 ` Joerg Schilling @ 2013-08-27 20:36 ` Alan McKinnon 2013-08-27 21:06 ` Joerg Schilling 0 siblings, 1 reply; 41+ messages in thread From: Alan McKinnon @ 2013-08-27 20:36 UTC (permalink / raw To: gentoo-user On 27/08/2013 11:08, Joerg Schilling wrote: > Alan McKinnon <alan.mckinnon@gmail.com> wrote: > >>> Isn't it strange that those people seem to have less problems with closed >>> source than with a license that gives more freedom than the GPL? But >>> you are correct that the problem seem to be humans and not a license text. >> >> You are aware that the GPL was not really intended to be used together >> with other licenses? It was really intended to create an entire >> operating system, all of which was 100% licensed as GPL, all of which >> comprise an original work written from scratch > > But it has been proven that you cannot create a 100% GPL OS. > More than 50% of all Linux distros are under different licenses... > >> Stallman never makes this claim as bluntly as I've said it here, but >> it's the only intelligent reading of his intent as far as I can make >> out. This is why so many arguments arise over the GPL, the wording of >> that license was not really intended to have it co-exist with other >> licenses. > > Stallman does not look at reality. The first GCC version in 1986 has been > published under something I call GPLv0 and this license did not permit a legal > use of the GCC in public. > > The license was later converted to GPLv1 by using proposals I made but > Stallman still only talks about what has been in GPLv0. I didn't bring this up to discuss fine points of licenses. I brought it up for those who might want to understand what the GPL is intended to do; that can only be truly understood by determining what Stallman intended. The GPL is a reflection of Stallman's intent, and can only be truly understood in that light. Whether the legal wording accurately matches his intent is another matter altogether. I personally feel it doesn't, won't and cannot, for reasons of psychology and philosophy, not for reasons of technology or law. What the GPL tries to do and how it does it is quite foreign to most who practice law. Humans don't like foreign concepts. Heck, GPL-2 doesn't even remotely read like something that came off a lawyer's desk. > >>> There is nothing non-void in the GPL that stops you from distributing binaries. >> >> That's a question of packaging and bundling, which is not covered by the >> GPL. But kernel code and kernel modules are not mere bundles, they are >> derivative works by virtue of how tightly they integrate with the >> kernel, and how the code can only ever run unchanged on Linux. > > If a kernel uses ZFS, you have to decide on whether the kernel is a derivative > work of ZFS or whether just a collective work exists. > > _Using_ ZFS definitely does not make ZFS a derivative work. I never said it did. I was concentrating on those parts of ZFS that interact with kernel internals - that might not be been entirely clear You are making a spurious claim by saying "you have to decide on whether the kernel is a derivative work of ZFS or ..." In what possible way could the entire Linux kernel be considered a derivative work of ZFS? That doesn't make any sense. -- Alan McKinnon alan.mckinnon@gmail.com ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-27 20:36 ` Alan McKinnon @ 2013-08-27 21:06 ` Joerg Schilling 2013-08-28 10:58 ` Tanstaafl 0 siblings, 1 reply; 41+ messages in thread From: Joerg Schilling @ 2013-08-27 21:06 UTC (permalink / raw To: gentoo-user Alan McKinnon <alan.mckinnon@gmail.com> wrote: > >> That's a question of packaging and bundling, which is not covered by the > >> GPL. But kernel code and kernel modules are not mere bundles, they are > >> derivative works by virtue of how tightly they integrate with the > >> kernel, and how the code can only ever run unchanged on Linux. > > > > If a kernel uses ZFS, you have to decide on whether the kernel is a derivative > > work of ZFS or whether just a collective work exists. > > > > _Using_ ZFS definitely does not make ZFS a derivative work. > > I never said it did. I was concentrating on those parts of ZFS that > interact with kernel internals - that might not be been entirely clear You wrote that modules become derivatives of the Linux kernel and this is the same as writing ZFS would become a kernel derivative. The linux kernel does not come with a modern VFS implementation, so if you like to use ZFS on Linux you first need to provide a suitable VFS interface. ZFS will not interact with the Linux kernel directly but with the expected VFS layer. Shouldn't it be possible to put this intermediate layer under a license that makes even the zealots happy? > You are making a spurious claim by saying "you have to decide on whether > the kernel is a derivative work of ZFS or ..." If you go the non-lawful Stallman way and insist in a derivative work to be build, then the linux kernel is the derivative work. I prefer to assume that this just builds a collective work ;-) > In what possible way could the entire Linux kernel be considered a > derivative work of ZFS? That doesn't make any sense. I am just quoting claims from Stallman ;-) Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-27 21:06 ` Joerg Schilling @ 2013-08-28 10:58 ` Tanstaafl 2013-08-28 11:12 ` Alan McKinnon 0 siblings, 1 reply; 41+ messages in thread From: Tanstaafl @ 2013-08-28 10:58 UTC (permalink / raw To: gentoo-user On 2013-08-27 5:06 PM, Joerg Schilling <Joerg.Schilling@fokus.fraunhofer.de> wrote: > You wrote that modules become derivatives of the Linux kernel and this is the > same as writing ZFS would become a kernel derivative. Just for clarification, I was talking about compiling ZFS support INTO the kernel, not running it as a module. Do you claim that support for compiling ZFS directly into the kernel also does not violate the license? ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-28 10:58 ` Tanstaafl @ 2013-08-28 11:12 ` Alan McKinnon 2013-08-30 14:29 ` Tanstaafl 0 siblings, 1 reply; 41+ messages in thread From: Alan McKinnon @ 2013-08-28 11:12 UTC (permalink / raw To: gentoo-user On 28/08/2013 12:58, Tanstaafl wrote: > On 2013-08-27 5:06 PM, Joerg Schilling > <Joerg.Schilling@fokus.fraunhofer.de> wrote: >> You wrote that modules become derivatives of the Linux kernel and this >> is the >> same as writing ZFS would become a kernel derivative. > > Just for clarification, I was talking about compiling ZFS support INTO > the kernel, not running it as a module. > > Do you claim that support for compiling ZFS directly into the kernel > also does not violate the license? > Whether the code is compile in or a module makes no difference wrt licenses as far as I know. There's no limitation on *running* the code, you can fetch and patch and edit and compile and run all you want and have it on as many of your (or the company's) machines as you want - neither license interferes with your right to do that. You may not redistribute the code though. A common misconception with these license is that they have something to do with whether you may run the code or not. That is incorrect. Free licenses are all about redistribution and your obligations about sharing when you hand the code over to others. -- Alan McKinnon alan.mckinnon@gmail.com ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-28 11:12 ` Alan McKinnon @ 2013-08-30 14:29 ` Tanstaafl 2013-08-30 14:34 ` Alan McKinnon 0 siblings, 1 reply; 41+ messages in thread From: Tanstaafl @ 2013-08-30 14:29 UTC (permalink / raw To: gentoo-user On 2013-08-28 7:12 AM, Alan McKinnon <alan.mckinnon@gmail.com> wrote: > Whether the code is compile in or a module makes no difference wrt > licenses as far as I know. > > There's no limitation on*running* the code, you can fetch and patch and > edit and compile and run all you want and have it on as many of your (or > the company's) machines as you want - neither license interferes with > your right to do that. > > You may not redistribute the code though. So, can you answer me this... Why would there be a problem if someone decided to create a 3rd party overlay *not* part of the official gentoo portage tree that contained *only* the zfs stuff, and when this overlay was installed combined with a zfs keyword for the kernel, portage would then pull in the required files, and automagically build a kernel with an up to date version of zfs properly and fully integrated? Would this not work, *and* have no problems with licensing? ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-30 14:29 ` Tanstaafl @ 2013-08-30 14:34 ` Alan McKinnon 2013-08-30 14:44 ` Integrated ZFS for Gentoo - WAS " Tanstaafl 0 siblings, 1 reply; 41+ messages in thread From: Alan McKinnon @ 2013-08-30 14:34 UTC (permalink / raw To: gentoo-user On 30/08/2013 16:29, Tanstaafl wrote: > On 2013-08-28 7:12 AM, Alan McKinnon <alan.mckinnon@gmail.com> wrote: >> Whether the code is compile in or a module makes no difference wrt >> licenses as far as I know. >> >> There's no limitation on*running* the code, you can fetch and patch and >> edit and compile and run all you want and have it on as many of your (or >> the company's) machines as you want - neither license interferes with >> your right to do that. >> >> You may not redistribute the code though. > > So, can you answer me this... > > Why would there be a problem if someone decided to create a 3rd party > overlay *not* part of the official gentoo portage tree that contained > *only* the zfs stuff, and when this overlay was installed combined with > a zfs keyword for the kernel, portage would then pull in the required > files, and automagically build a kernel with an up to date version of > zfs properly and fully integrated? > > Would this not work, *and* have no problems with licensing? > there is no problem with licensing in that case. The ebuild could even go in the portage tree, as Gentoo is not redistributing sources when it publishes an ebuild. -- Alan McKinnon alan.mckinnon@gmail.com ^ permalink raw reply [flat|nested] 41+ messages in thread
* Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-30 14:34 ` Alan McKinnon @ 2013-08-30 14:44 ` Tanstaafl 2013-08-30 19:21 ` Alan McKinnon 2013-08-30 20:16 ` Mick 0 siblings, 2 replies; 41+ messages in thread From: Tanstaafl @ 2013-08-30 14:44 UTC (permalink / raw To: gentoo-user On 2013-08-30 10:34 AM, Alan McKinnon <alan.mckinnon@gmail.com> wrote: > On 30/08/2013 16:29, Tanstaafl wrote: >> Why would there be a problem if someone decided to create a 3rd party >> overlay *not* part of the official gentoo portage tree that contained >> *only* the zfs stuff, and when this overlay was installed combined with >> a zfs keyword for the kernel, portage would then pull in the required >> files, and automagically build a kernel with an up to date version of >> zfs properly and fully integrated? >> >> Would this not work, *and* have no problems with licensing? > there is no problem with licensing in that case. > The ebuild could even go in the portage tree, as Gentoo is not > redistributing sources when it publishes an ebuild. Thanks Alan! Just the answer I wanted. Ok, so... how hard would this be then? What would the chances be that this could actually happen? I'll happily go open a bug for it if you think the work would be minimal... It seems to me that I can't be the only one who would like to see this happen? ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-30 14:44 ` Integrated ZFS for Gentoo - WAS " Tanstaafl @ 2013-08-30 19:21 ` Alan McKinnon 2013-08-31 8:59 ` Peter Humphrey 2013-08-30 20:16 ` Mick 1 sibling, 1 reply; 41+ messages in thread From: Alan McKinnon @ 2013-08-30 19:21 UTC (permalink / raw To: gentoo-user On 30/08/2013 16:44, Tanstaafl wrote: > On 2013-08-30 10:34 AM, Alan McKinnon <alan.mckinnon@gmail.com> wrote: >> On 30/08/2013 16:29, Tanstaafl wrote: >>> Why would there be a problem if someone decided to create a 3rd party >>> overlay *not* part of the official gentoo portage tree that contained >>> *only* the zfs stuff, and when this overlay was installed combined with >>> a zfs keyword for the kernel, portage would then pull in the required >>> files, and automagically build a kernel with an up to date version of >>> zfs properly and fully integrated? >>> >>> Would this not work, *and* have no problems with licensing? > >> there is no problem with licensing in that case. >> The ebuild could even go in the portage tree, as Gentoo is not >> redistributing sources when it publishes an ebuild. > > Thanks Alan! Just the answer I wanted. > > Ok, so... how hard would this be then? What would the chances be that > this could actually happen? I'll happily go open a bug for it if you > think the work would be minimal... > > It seems to me that I can't be the only one who would like to see this > happen? > Ahem, Mr Bothwick! Our friend with the thing about free lunches needs you to demonstrate your penmanship, considering you have some proven results in this area. :-) -- Alan McKinnon alan.mckinnon@gmail.com ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-30 19:21 ` Alan McKinnon @ 2013-08-31 8:59 ` Peter Humphrey 0 siblings, 0 replies; 41+ messages in thread From: Peter Humphrey @ 2013-08-31 8:59 UTC (permalink / raw To: gentoo-user On Friday 30 Aug 2013 21:21:10 Alan McKinnon wrote: > Ahem, Mr Bothwick! > > Our friend with the thing about free lunches needs you to demonstrate > your penmanship, considering you have some proven results in this area. ...and I'd happily act as editor... :-) ;-) -- Regards, Peter ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-30 14:44 ` Integrated ZFS for Gentoo - WAS " Tanstaafl 2013-08-30 19:21 ` Alan McKinnon @ 2013-08-30 20:16 ` Mick 2013-08-31 5:10 ` Mark David Dumlao 1 sibling, 1 reply; 41+ messages in thread From: Mick @ 2013-08-30 20:16 UTC (permalink / raw To: gentoo-user [-- Attachment #1: Type: Text/Plain, Size: 1227 bytes --] On Friday 30 Aug 2013 15:44:35 Tanstaafl wrote: > On 2013-08-30 10:34 AM, Alan McKinnon <alan.mckinnon@gmail.com> wrote: > > On 30/08/2013 16:29, Tanstaafl wrote: > >> Why would there be a problem if someone decided to create a 3rd party > >> overlay *not* part of the official gentoo portage tree that contained > >> *only* the zfs stuff, and when this overlay was installed combined with > >> a zfs keyword for the kernel, portage would then pull in the required > >> files, and automagically build a kernel with an up to date version of > >> zfs properly and fully integrated? > >> > >> Would this not work, *and* have no problems with licensing? > > > > there is no problem with licensing in that case. > > The ebuild could even go in the portage tree, as Gentoo is not > > redistributing sources when it publishes an ebuild. > > Thanks Alan! Just the answer I wanted. > > Ok, so... how hard would this be then? What would the chances be that > this could actually happen? I'll happily go open a bug for it if you > think the work would be minimal... > > It seems to me that I can't be the only one who would like to see this > happen? Nope! I will vote for you. ;-) -- Regards, Mick [-- Attachment #2: This is a digitally signed message part. --] [-- Type: application/pgp-signature, Size: 490 bytes --] ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-30 20:16 ` Mick @ 2013-08-31 5:10 ` Mark David Dumlao 2013-08-31 9:30 ` Pandu Poluan 2013-08-31 11:25 ` Tanstaafl 0 siblings, 2 replies; 41+ messages in thread From: Mark David Dumlao @ 2013-08-31 5:10 UTC (permalink / raw To: gentoo-user On Sat, Aug 31, 2013 at 4:16 AM, Mick <michaelkintzios@gmail.com> wrote: > On Friday 30 Aug 2013 15:44:35 Tanstaafl wrote: >> On 2013-08-30 10:34 AM, Alan McKinnon <alan.mckinnon@gmail.com> wrote: >> > On 30/08/2013 16:29, Tanstaafl wrote: >> >> Why would there be a problem if someone decided to create a 3rd party >> >> overlay *not* part of the official gentoo portage tree that contained >> >> *only* the zfs stuff, and when this overlay was installed combined with >> >> a zfs keyword for the kernel, portage would then pull in the required >> >> files, and automagically build a kernel with an up to date version of >> >> zfs properly and fully integrated? >> >> >> >> Would this not work, *and* have no problems with licensing? >> > >> > there is no problem with licensing in that case. >> > The ebuild could even go in the portage tree, as Gentoo is not >> > redistributing sources when it publishes an ebuild. >> >> Thanks Alan! Just the answer I wanted. >> >> Ok, so... how hard would this be then? What would the chances be that >> this could actually happen? I'll happily go open a bug for it if you >> think the work would be minimal... >> >> It seems to me that I can't be the only one who would like to see this >> happen? > > Nope! I will vote for you. ;-) > > -- > Regards, > Mick Sounds like an awful lot of trouble for a "problem" that's already solved by installing sys-kernel/module-rebuild and running "module-rebuild rebuild" after every kernel update, which is how nvidia, broadcom, and other kernel modules are dealt painlessly with anyways... -- This email is: [ ] actionable [x] fyi [ ] social Response needed: [ ] yes [x] up to you [ ] no Time-sensitive: [ ] immediate [ ] soon [x] none ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 5:10 ` Mark David Dumlao @ 2013-08-31 9:30 ` Pandu Poluan 2013-08-31 11:04 ` Joerg Schilling 2013-08-31 11:25 ` Tanstaafl 1 sibling, 1 reply; 41+ messages in thread From: Pandu Poluan @ 2013-08-31 9:30 UTC (permalink / raw To: gentoo-user On Sat, Aug 31, 2013 at 12:10 PM, Mark David Dumlao <madumlao@gmail.com> wrote: > On Sat, Aug 31, 2013 at 4:16 AM, Mick <michaelkintzios@gmail.com> wrote: >> On Friday 30 Aug 2013 15:44:35 Tanstaafl wrote: >>> On 2013-08-30 10:34 AM, Alan McKinnon <alan.mckinnon@gmail.com> wrote: >>> > On 30/08/2013 16:29, Tanstaafl wrote: >>> >> Why would there be a problem if someone decided to create a 3rd party >>> >> overlay *not* part of the official gentoo portage tree that contained >>> >> *only* the zfs stuff, and when this overlay was installed combined with >>> >> a zfs keyword for the kernel, portage would then pull in the required >>> >> files, and automagically build a kernel with an up to date version of >>> >> zfs properly and fully integrated? >>> >> >>> >> Would this not work, *and* have no problems with licensing? >>> > >>> > there is no problem with licensing in that case. >>> > The ebuild could even go in the portage tree, as Gentoo is not >>> > redistributing sources when it publishes an ebuild. >>> >>> Thanks Alan! Just the answer I wanted. >>> >>> Ok, so... how hard would this be then? What would the chances be that >>> this could actually happen? I'll happily go open a bug for it if you >>> think the work would be minimal... >>> >>> It seems to me that I can't be the only one who would like to see this >>> happen? >> >> Nope! I will vote for you. ;-) >> >> -- >> Regards, >> Mick > > Sounds like an awful lot of trouble for a "problem" that's already solved by > installing sys-kernel/module-rebuild and running "module-rebuild rebuild" > after every kernel update, which is how nvidia, broadcom, and other > kernel modules are dealt painlessly with anyways... > Well, if you follow Tanstaafl in the other thread, you'll see that he wants ZFS to be integrated into the kernel, not existing as a kernel module. Rgds, -- FdS Pandu E Poluan ~ IT Optimizer ~ • LOPSA Member #15248 • Blog : http://pepoluan.tumblr.com • Linked-In : http://id.linkedin.com/in/pepoluan ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 9:30 ` Pandu Poluan @ 2013-08-31 11:04 ` Joerg Schilling 2013-08-31 11:28 ` Tanstaafl 0 siblings, 1 reply; 41+ messages in thread From: Joerg Schilling @ 2013-08-31 11:04 UTC (permalink / raw To: gentoo-user Pandu Poluan <pandu@poluan.info> wrote: > Well, if you follow Tanstaafl in the other thread, you'll see that he > wants ZFS to be integrated into the kernel, not existing as a kernel > module. > But why does someone want things to be inside a static kernel? Since 1991/1992, Solaris does not have anything in the static "kernel" than the startup code, the basic scheduler code and the pager daemon. You need a bootloader that knows about ELF dependencies, but grub has been enhanced for that feature. Everything is dynamic, you would however put a lot of effort into the linux kernel to get to that state...e.g. automated major device numbering. Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 11:04 ` Joerg Schilling @ 2013-08-31 11:28 ` Tanstaafl 2013-08-31 11:32 ` Alon Bar-Lev 0 siblings, 1 reply; 41+ messages in thread From: Tanstaafl @ 2013-08-31 11:28 UTC (permalink / raw To: gentoo-user On 2013-08-31 7:04 AM, Joerg Schilling <Joerg.Schilling@fokus.fraunhofer.de> wrote: > Everything is dynamic, you would however put a lot of effort into the linux > kernel to get to that state...e.g. automated major device numbering. ??? I've been running my servers without modules since... I started running servers. Servers are not like desktops - constantly changing devices. They - in most cases - *are* static, and most people *want* them that way. Regardless, please do *not* distract this thread with arguments about it. If you don't want or see the benefit, fine, just ignore this thread. ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 11:28 ` Tanstaafl @ 2013-08-31 11:32 ` Alon Bar-Lev 2013-09-01 14:24 ` Tanstaafl 0 siblings, 1 reply; 41+ messages in thread From: Alon Bar-Lev @ 2013-08-31 11:32 UTC (permalink / raw To: gentoo-user On Sat, Aug 31, 2013 at 2:28 PM, Tanstaafl <tanstaafl@libertytrek.org> wrote: > > On 2013-08-31 7:04 AM, Joerg Schilling <Joerg.Schilling@fokus.fraunhofer.de> wrote: >> >> Everything is dynamic, you would however put a lot of effort into the linux >> kernel to get to that state...e.g. automated major device numbering. > > > ??? I've been running my servers without modules since... I started running servers. > > Servers are not like desktops - constantly changing devices. They - in most cases - *are* static, and most people *want* them that way. > > Regardless, please do *not* distract this thread with arguments about it. If you don't want or see the benefit, fine, just ignore this thread. > I do not understand this thread. If this is not mainline, and it is not trivial gentoo kernels maintainer patch, and you must have this as static, you can just put the patch within /etc/portage/patches/sys-kernel/gentoo-sources/, so it will patch your kernel every time you emerge new one. Regards, Alon ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 11:32 ` Alon Bar-Lev @ 2013-09-01 14:24 ` Tanstaafl 0 siblings, 0 replies; 41+ messages in thread From: Tanstaafl @ 2013-09-01 14:24 UTC (permalink / raw To: gentoo-user On 2013-08-31 7:32 AM, Alon Bar-Lev <alonbl@gentoo.org> wrote: > If this is not mainline, and it is not trivial gentoo kernels > maintainer patch, and you must have this as static, you can just put > the patch within/etc/portage/patches/sys-kernel/gentoo-sources/, so > it will patch your kernel every time you emerge new one. Interesting, but this would require manually updating the patch every time, right? Or could the 'patch' be configured to automatically pull the right version (compatible with the kernel being installed) every time? That would not be such a bad thing... but if not... well... Computers excel at automating things. People excel at breaking things, and I'd like this to be automated as much as possible. That said, I've never applied patches in this manner, so, is there an up to date how-to on how to do this? It might be something I can get comfortable with unless/until an automated process is implemented. On 2013-08-31 8:19 AM, Joerg Schilling wrote: > So there seems to be no real need to create a static linux kernel > with ZFS inside. <sigh> There is for those who *do not want modules enabled on their servers*. Why is it so hard for some people to just not get that their way is not the only way. Again, Joerg... please *stop arguing* about this point, it has *nothing* to do with the thread. On 2013-08-31 2:44 PM, Mark David Dumlao <madumlao@gmail.com> wrote: >> You must have missed the point that this is for *servers*, that >> most people *disable modules* on. I*know* that it is available as a >> module. > Ok, I was just asking. But as for what "most people" do on their > servers, speak for yourself. Ok, I left out two words: '... I know ... ' - and the fact is, most everyone I know (over a dozen) who runs linux servers (not just gentoo) runs them with modules disabled, and I've seen countless others say the same thing over the years... The fact is, *many* people do this, and if it trivial to implement it in gentoo (which appears it is), then why not do so? ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 5:10 ` Mark David Dumlao 2013-08-31 9:30 ` Pandu Poluan @ 2013-08-31 11:25 ` Tanstaafl 2013-08-31 11:29 ` Joerg Schilling 2013-08-31 18:44 ` Mark David Dumlao 1 sibling, 2 replies; 41+ messages in thread From: Tanstaafl @ 2013-08-31 11:25 UTC (permalink / raw To: gentoo-user On 2013-08-31 1:10 AM, Mark David Dumlao <madumlao@gmail.com> wrote: > Sounds like an awful lot of trouble for a "problem" that's already solved by > installing sys-kernel/module-rebuild and running "module-rebuild rebuild" > after every kernel update, which is how nvidia, broadcom, and other > kernel modules are dealt painlessly with anyways... You must have missed the point that this is for *servers*, that most people *disable modules* on. I *know* that it is available as a module. ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 11:25 ` Tanstaafl @ 2013-08-31 11:29 ` Joerg Schilling 2013-09-01 13:55 ` Tanstaafl 2013-08-31 18:44 ` Mark David Dumlao 1 sibling, 1 reply; 41+ messages in thread From: Joerg Schilling @ 2013-08-31 11:29 UTC (permalink / raw To: gentoo-user Tanstaafl <tanstaafl@libertytrek.org> wrote: > On 2013-08-31 1:10 AM, Mark David Dumlao <madumlao@gmail.com> wrote: > > Sounds like an awful lot of trouble for a "problem" that's already solved by > > installing sys-kernel/module-rebuild and running "module-rebuild rebuild" > > after every kernel update, which is how nvidia, broadcom, and other > > kernel modules are dealt painlessly with anyways... > > You must have missed the point that this is for *servers*, that most > people *disable modules* on. I *know* that it is available as a module. Why, for security reasons? On Solaris, you can disable loading unsigned modules, is this not supported by Linux? Jörg -- EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin js@cs.tu-berlin.de (uni) joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 11:29 ` Joerg Schilling @ 2013-09-01 13:55 ` Tanstaafl 0 siblings, 0 replies; 41+ messages in thread From: Tanstaafl @ 2013-09-01 13:55 UTC (permalink / raw To: gentoo-user On 2013-08-31 7:29 AM, Joerg Schilling <Joerg.Schilling@fokus.fraunhofer.de> wrote: > Tanstaafl<tanstaafl@libertytrek.org> wrote: >> You must have missed the point that this is for*servers*, that most >> people*disable modules* on. I*know* that it is available as a module. > Why, for security reasons? Because if you don't need something, why enable it? If modules are totally disabled, then there is no worry about any security issue involving modules at all. ^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo 2013-08-31 11:25 ` Tanstaafl 2013-08-31 11:29 ` Joerg Schilling @ 2013-08-31 18:44 ` Mark David Dumlao 1 sibling, 0 replies; 41+ messages in thread From: Mark David Dumlao @ 2013-08-31 18:44 UTC (permalink / raw To: gentoo-user On Sat, Aug 31, 2013 at 7:25 PM, Tanstaafl <tanstaafl@libertytrek.org> wrote: > On 2013-08-31 1:10 AM, Mark David Dumlao <madumlao@gmail.com> wrote: >> >> Sounds like an awful lot of trouble for a "problem" that's already solved >> by >> installing sys-kernel/module-rebuild and running "module-rebuild rebuild" >> after every kernel update, which is how nvidia, broadcom, and other >> kernel modules are dealt painlessly with anyways... > > > You must have missed the point that this is for *servers*, that most people > *disable modules* on. I *know* that it is available as a module. > Ok, I was just asking. But as for what "most people" do on their servers, speak for yourself. -- This email is: [ ] actionable [ ] fyi [x] social Response needed: [ ] yes [ ] up to you [x] no Time-sensitive: [ ] immediate [ ] soon [x] none ^ permalink raw reply [flat|nested] 41+ messages in thread
end of thread, other threads:[~2013-09-05 10:05 UTC | newest] Thread overview: 41+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <lLgTf-5SZ-7@gated-at.bofh.it> [not found] ` <lMy1I-42B-13@gated-at.bofh.it> [not found] ` <lMybn-4c8-13@gated-at.bofh.it> [not found] ` <lMFPA-5c8-5@gated-at.bofh.it> [not found] ` <lMLLl-4gZ-31@gated-at.bofh.it> [not found] ` <lMRxo-37c-19@gated-at.bofh.it> [not found] ` <lMRH5-3hw-45@gated-at.bofh.it> 2013-08-31 12:08 ` Integrated ZFS for Gentoo - WAS Re: [gentoo-user] Optional /usr merge in Gentoo Gregory Shearman 2013-08-31 12:19 ` Joerg Schilling 2013-09-01 0:13 ` Walter Dnes 2013-09-01 0:36 ` Canek Peláez Valdés 2013-09-01 3:55 ` Walter Dnes 2013-09-01 4:31 ` Canek Peláez Valdés 2013-09-01 14:30 ` Tanstaafl 2013-09-01 14:47 ` Alan McKinnon 2013-09-03 14:58 ` Douglas J Hunley 2013-09-04 1:20 ` Dale 2013-09-01 5:41 ` Integrated ZFS for Gentoo - WAS " Mark David Dumlao 2013-09-02 4:44 ` Walter Dnes 2013-09-01 14:11 ` Tanstaafl 2013-09-02 4:09 ` Walter Dnes 2013-09-01 0:51 ` Mark David Dumlao 2013-09-01 3:43 ` Pandu Poluan 2013-09-01 7:49 ` Joerg Schilling 2013-09-01 21:19 ` Walter Dnes 2013-09-02 4:43 ` Mark David Dumlao 2013-09-02 8:47 ` Joerg Schilling 2013-09-04 2:54 ` Walter Dnes 2013-09-04 11:25 ` Joerg Schilling 2013-09-04 12:36 ` Integrated ZFS for Gentoo - WAS " Nicolas Sebrecht 2013-09-04 6:49 ` Integrated ZFS for Gentoo - WAS Re: [gentoo-user] " Marc Stürmer 2013-09-05 10:04 ` Tanstaafl 2013-09-04 11:53 ` Mark David Dumlao 2013-09-04 12:01 ` Joerg Schilling 2013-08-27 2:04 Thomas Mueller 2013-08-27 6:10 ` Alan McKinnon 2013-08-27 7:53 ` Joerg Schilling 2013-08-27 8:37 ` Alan McKinnon 2013-08-27 9:08 ` Joerg Schilling 2013-08-27 20:36 ` Alan McKinnon 2013-08-27 21:06 ` Joerg Schilling 2013-08-28 10:58 ` Tanstaafl 2013-08-28 11:12 ` Alan McKinnon 2013-08-30 14:29 ` Tanstaafl 2013-08-30 14:34 ` Alan McKinnon 2013-08-30 14:44 ` Integrated ZFS for Gentoo - WAS " Tanstaafl 2013-08-30 19:21 ` Alan McKinnon 2013-08-31 8:59 ` Peter Humphrey 2013-08-30 20:16 ` Mick 2013-08-31 5:10 ` Mark David Dumlao 2013-08-31 9:30 ` Pandu Poluan 2013-08-31 11:04 ` Joerg Schilling 2013-08-31 11:28 ` Tanstaafl 2013-08-31 11:32 ` Alon Bar-Lev 2013-09-01 14:24 ` Tanstaafl 2013-08-31 11:25 ` Tanstaafl 2013-08-31 11:29 ` Joerg Schilling 2013-09-01 13:55 ` Tanstaafl 2013-08-31 18:44 ` Mark David Dumlao
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox