DEV Community

Cover image for Which OpenIndiana directories to backup for bare metal recovery
jdrch
jdrch

Posted on Edited on

Which OpenIndiana directories to backup for bare metal recovery

For bare metal recovery, backup every ZFS filesystem under /. You can find what isn't a ZFS filesystem by running:

`$ awk '$3 != "zfs" { printf("%-20s %s\n", $2, $3); }' /etc/mnttab | sort`
Enter fullscreen mode Exit fullscreen mode

You can also add /mnt to that list if you choose to not backup your mountpoint contents.

Top comments (0)