ZFS I have a bootable disk here where FreeBSD has been installed with AutoZFS. how do I mount it on 2nd PC?

as above.

The 2nd PC also has FreeBSD and its disk also has been partitioned/formatted using autoZFS.

I want to mount the 1st disk into the 2nd PC and get some files. After I'm finished, I want to put back disk1 back into the 1st PC so it go back to whatever it is doing.

Thanks
 
Connect the disk, list aviable ZFS pools:
zpool import

Import (mount) one pool:
zpool import -R /mnt poolname

The pool should be on /mnt now.

If you are done, export (unmount) the pool:
zpool export poolname
 
Connect the disk, list aviable ZFS pools:
zpool import

Import (mount) one pool:
zpool import -R /mnt poolname

The pool should be on /mnt now.

If you are done, export (unmount) the pool:
zpool export poolname
I've never used the -R parameter before. let me look that up. Thanks
 
Back
Top