ZFS - Pools - Create a ZFS Pool - Create a ZFS Pool using a File as a Device

dd if=/dev/zero of=test1.img bs=1M count=2048
dd if=/dev/zero of=test2.img bs=1M count=2048
sudo zpool create testpool /home/peter/test1.img /home/peter/test2.img
sudo zpool status