I would like to migrate my home directories to a new mirror. Currently, I have them in rpool: rpool/export rpool/export/home I''ve created a mirror pool, users. I figure the steps are: 1) snapshot rpool/export/home 2) send the snapshot to users. 3) unmount rpool/export/home 4) mount pool users to /export/home So, what are the appropriate commands for these steps? Thanks, Gary -- This message posted from opensolaris.org
On 09/ 5/10 07:18 PM, Gary Gendel wrote:> I would like to migrate my home directories to a new mirror. Currently, I have them in rpool: > > rpool/export > rpool/export/home > > I''ve created a mirror pool, users. > > I figure the steps are: > 1) snapshot rpool/export/homezfs snapshot rpool/export/home at snapshot> 2) send the snapshot to users.zfs send rpool/export/home at snapshot | zfs recv -F users Or similar depending on your needs.> 3) unmount rpool/export/homezfs set mountpoint=legacy rpool/export/home> 4) mount pool users to /export/homezfs set mountpoint=/export/home users> So, what are the appropriate commands for these steps?You might look at the zfs(1m) man page for more info -Norm
Norm, Thank you. I just wanted to double-check to make sure I didn''t mess up things. There were steps that I was head-scratching after reading the man page. I''ll spend a bit more time re-reading it using the steps outlined so I understand these fully. Gary -- This message posted from opensolaris.org