On Sun, 26 Oct 2008 15:10:18 PDT
weknox <weknox at mac.com> wrote:

> Hi
> 
> The question says it all, sort of.
> 
> This zfs stuff is really very new to me.  I want to clone a snapshot but I 
> receive the "dataset does not exist" error.  The command I'm using is " zfs 
> clone opensolaris-1 at somedate /mnt "
> 
> Any ideas?  I wouldn't mind some focused reading suggestions either.

"man zfs" says that the last argument to clone is a
"filesystem|volume". /mnt is neither.

If you want to make /mnt the mountpoint for the clone, you want:

zfs clone -o mountpoint=/mnt opensolaris-1 at somedate opensolaris-1/newclone

(or something like that). That looks like you've created a snapshot of
the pool called "opensolaris-1", and want to clone the entire pool.

    <mike

-- 
Mike Meyer <mwm at mired.org>           http://www.mired.org/consulting.html
Independent Network/Unix/Perforce consultant, email for more information.

O< ascii ribbon campaign - stop html mail - www.asciiribbon.org

Reply via email to