> I can mount rpool/opensolaris, but not
> rpool/opensolaris-18, if i can I'd be able to delete
> some files.
> 
> r...@opensolaris:/# mount -F zfs rpool/ROOT/opensolaris-18 /hdroot
> filesystem 'rpool/ROOT/opensolaris-18' cannot be mounted using 'mount -F zfs'
> Use 'zfs set mountpoint=/hdroot' instead.
> If you must use 'mount -F zfs' or /etc/vfstab, use 'zfs set 
> mountpoint=legacy'.
> See zfs(1M) for more information.
> r...@opensolaris:/#

There's not much to add; the error message says it all.

You're trying to use a legacy mount (mount -F zfs ...)
on a zfs file system that isn't setup for legacy mounts
(zfs' "mountpoint" property isn't "legacy").

One way to mount it is:

    # zfs set mountpoint=legacy rpool/ROOT/opensolaris-18 
    # mount -F zfs rpool/ROOT/opensolaris-18 /hdroot
-- 
This message posted from opensolaris.org
_______________________________________________
opensolaris-discuss mailing list
[email protected]

Reply via email to