Re: [zfs-discuss] How to identify user-created zfs filesystems?

2010-08-05 Thread Peter Taps
Thank you all for your help. It turns out that I just need to ignore the ones that have their mount points either not defined or are marked as legacy. It is good to learn about history command. Could come in handy. Regards, Peter -- This message posted from opensolaris.org

[zfs-discuss] How to identify user-created zfs filesystems?

2010-08-04 Thread Peter Taps
Folks, In my application, I need to present user-created filesystems. For my test, I created a zfs pool called mypool and two file systems called cifs1 and cifs2. However, when I run zfs list, I see a lot more entries: # zfs list NAME USED AVAIL REFER MOUNTPOINT mypool

Re: [zfs-discuss] How to identify user-created zfs filesystems?

2010-08-04 Thread Cindy Swearingen
Hi Peter, I don't think we have any property that determines who created the file system. Would this work instead: # zfs list -r mypool NAME USED AVAIL REFER MOUNTPOINT mypool 172K 134G33K /mypool mypool/cifs131K 134G31K /mypool/cifs1 mypool/cifs231K

Re: [zfs-discuss] How to identify user-created zfs filesystems?

2010-08-04 Thread Mark J Musante
You can use 'zpool history -l syspool' to show the username of the person who created the dataset. The history is in a ring buffer, so if too many pool operations have happened since the dataset was created, the information is lost. On Wed, 4 Aug 2010, Peter Taps wrote: Folks, In my