There''s been another sighting of ZFS on Mac. The latest developer release of Leopard (Mac OS 10.5) has a dialogue box calling out the "Zettabyte File System (ZFS)" as an option. The first publication I saw this is a French website called Mac4Ever - http://mac4ever.com/ news/27485/zettabyte_sur_leopard/ I put up a Babelfish translation at my site, http://storagemojo.com/? p=333 This is going to be great for ZFS, Sun and Apple. Naturally, the Sun guys who''ve been working with Apple on this can''t say anything until after the announcement, but I''m open to anonymous comments ;-) . Robin Harris StorageMojo.com
On 12/18/06, Robin Harris <robinharris at aya.yale.edu> wrote:> There''s been another sighting of ZFS on Mac. The latest developer > release of Leopard (Mac OS 10.5) has a dialogue box calling out the > "Zettabyte File System (ZFS)" as an option. The first publication I > saw this is a French website called Mac4Ever - http://mac4ever.com/ > news/27485/zettabyte_sur_leopard/ > > I put up a Babelfish translation at my site, http://storagemojo.com/? > p=333 > > This is going to be great for ZFS, Sun and Apple. Naturally, the Sun > guys who''ve been working with Apple on this can''t say anything until > after the announcement, but I''m open to anonymous comments ;-) .If you want some "anonymous comments", you can go here :) http://apple.slashdot.org/article.pl?sid=06/12/18/1155226&from=rss -- Eric Enright
Mike Seda
2006-Dec-18 19:56 UTC
[zfs-discuss] Please Help... Production machine migration from ufs to zfs
The following is output from getfacl on a ufs filesytem: [maseda at dragon maseda]$ getfacl /home/users/ahege/incoming # file: /home/users/ahege/incoming # owner: ahege # group: uncmd user::rwx user:nobody:rwx #effective:rwx group::r-x #effective:r-x mask:rwx other:r-x I want to have the same acl on a zfs filesytem. How do I accomplish that?
Mark Shellenbaum
2006-Dec-18 21:12 UTC
[zfs-discuss] Please Help... Production machine migration from ufs to zfs
Mike Seda wrote:> The following is output from getfacl on a ufs filesytem: > [maseda at dragon maseda]$ getfacl /home/users/ahege/incoming > # file: /home/users/ahege/incoming > # owner: ahege > # group: uncmd > user::rwx > user:nobody:rwx #effective:rwx > group::r-x #effective:r-x > mask:rwx > other:r-x > > I want to have the same acl on a zfs filesytem. How do I accomplish that?Assuming you already have /home/users/ahege/incoming set to mode 0755 then the following should do the trick. # chmod A+user:nobody:rwx:allow /home/users/ahege/incoming -Mark