I am on a journey of migrating a Windows/NTFS backup to Ubuntu and natively encrypted ZFS. As a Windows veteran with zero Linux experience, most guides seem like Greek to me. Successful progress yet:
- Installed OpenZFS via
sudo apt-get install zfsutils-linux - Created a raidz pool:
sudo zpool create -f Backup raidz3 /dev/sda /dev/sdbetc... - Installed Dolphin to locate the pool in
/Backup - Created a dataset inside the pool:
sudo zfs create -o encryption=on -o keyformat=passphrase Backup/Backup
Here I am kind of stuck:
- The OS never asks for the pool/dataset password. All needed to mount is either
sudo zfs mount Backup+ root password, or logging in. - What is the difference between a pool and a dataset? The pool created a ZFS file system for me.
- Is it possible to use the folder
/Backuprather than/Backup/Backup? Is it recommended? - What kind of (beginner friendly) maintenance routines would one run without risking to mess it up? This ZFS setup is all about redundancy and bit-rot protection.
I have looked through several threads about this, but I am completely lost around the commands and variables. All help appreciated. :)