On Fri, 22 Jan 2010, Tony MacDoodle wrote:

Can I move the below mounts under / ?

rpool/export        /export
rpool/export/home   /export/home

Sure. Just copy the data out of the directory, do a zfs destroy on the two filesystems, and copy it back.

For example:

# mkdir /save
# cp -r /export/home /save
# zfs destroy rpool/export/home
# zfs destroy rpool/export
# mkdir /export
# mv /save/home /export
# rmdir /save

I'm sure there are other ways to do it, but that's the gist.


Regards,
markm
_______________________________________________
zfs-discuss mailing list
zfs-discuss@opensolaris.org
http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Reply via email to