Can I move the below mounts under / ? rpool/export /export rpool/export/home /export/home It was a result of the default install....... Thaks -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.opensolaris.org/pipermail/zfs-discuss/attachments/20100122/ec856173/attachment.html>
On Fri, 22 Jan 2010, Tony MacDoodle wrote:> Can I move the below mounts under / ? > > rpool/export /export > rpool/export/home /export/homeSure. 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