> according to page 73. I should have this directory = > "/datapool/.zfs/shares" but I do not?
The directory [dataset]/.zfs exists for every ZFS dataset. It is "invisible" by default, as controlled by zfs dataset attribute "snapdir = (hidden|visible)". Originally it only contained pseudo-directories to access snapshot contents, hence the attribute name. If it is hidden and you don't want to un-hide it, you can type its name for ls or chmod commands verbatim, and it magically works, even for bash TAB-completion. Example: # ls -la /export/home/jim total 8 drwx--x--x 2 jim staff 2 Jun 19 15:11 . drwxr-x--x 7 root root 7 Jun 25 19:18 .. # ls -la /export/home/jim/.zfs total 11 dr-xr-xr-x 4 root root 4 May 28 2008 . drwx--x--x 2 jim staff 2 Jun 19 15:11 .. dr-xr-xr-x 2 root root 3 May 29 04:34 shares dr-xr-xr-x 2 root root 2 May 28 2008 snapshot # ls -la /export/home/jim/.zfs/shares total 5 dr-xr-xr-x 2 root root 3 May 29 04:34 . dr-xr-xr-x 4 root root 4 May 28 2008 .. -rwxrwxrwx+ 1 root root 0 May 29 04:34 jim -- This message posted from opensolaris.org _______________________________________________ cifs-discuss mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/cifs-discuss
