This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# ada3 new drive where migration intended | |
gpart add -t efi -s10G -lEFI /dev/ada3 | |
gpart add -t freebsd-swap -s64G -lSWAP /dev/ada3 | |
gpart add -t freebsd-zfs -lSYS /dev/ada3 | |
zfs snapshot -r zsys@full # create snapshot in source pool | |
zfs list -t snapshot # check |
OlderNewer