zpool
/ zfs
# 1. physically connect drives
# 2. debug / troubleshooting connection, if needed
sudo dmesg # check for errors
sudo fdisk -l # see disks
# 3. connect
sudo zpool import -a # import all pools
# or
sudo zpool import <pool-name>
# 4. mount
sudo zfs list # list all pools
sudo zfs set mountpoint=/home/user/mnt/<name> <pool-name>/<path>
# mount the pool
# 5. disconnect
sudo zpool export <pool-name>