Creating classic partition schemes under zfs can be done by specifying (as example),
A clear example is swap with zfs - which is illogical under the initial zfs design, but makes sense when you have several distros (bsd + linux) running on the same disk and want to use 1 swap space for all. Linux now supports zfs so you can at least place /home, docs, bookmarks on a zfs volume enabling access to your files under any O/S.
But as swap likes to be near the spin center and as a fragmented swap makes absolutely no sense, one would need to not only reserve space, but staticaly own disk "land" by specifying cylinder / block or such. Again, the purpose of doing this is because zfs (as far as I have found) is the only practical file sys currently capable of accommodating both BSD and linux O/S.
Other suggestions / views appreciated.
# zfs set reservation=10G tank0/whatever
thereby fixing a static size for the zfs volume. However, I would like to understand how to specify disk geometry priority for certain partitions while using zfs file sys.A clear example is swap with zfs - which is illogical under the initial zfs design, but makes sense when you have several distros (bsd + linux) running on the same disk and want to use 1 swap space for all. Linux now supports zfs so you can at least place /home, docs, bookmarks on a zfs volume enabling access to your files under any O/S.
But as swap likes to be near the spin center and as a fragmented swap makes absolutely no sense, one would need to not only reserve space, but staticaly own disk "land" by specifying cylinder / block or such. Again, the purpose of doing this is because zfs (as far as I have found) is the only practical file sys currently capable of accommodating both BSD and linux O/S.
Other suggestions / views appreciated.