Last active
August 29, 2015 14:13
-
-
Save kenny-evitt/6c2c403ec6c3c6f2051d to your computer and use it in GitHub Desktop.
ZFS commands
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
# List snapshots | |
sudo zfs list -t snapshot | |
# List differences since snapshot | |
sudo zfs diff snapshot snapshot_or_filesystem_or_pool | |
# Send+receive an incremental stream between two snapshots | |
sudo sh -c 'zfs send -i tank1@snapshot2 tank1@snapshot3 | zfs receive tank2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment