美文网首页
zfs send -i 与-I 参数对比

zfs send -i 与-I 参数对比

作者: 川人1588 | 来源:发表于2017-07-09 09:37 被阅读0次

-i snapshot

Generate an incremental stream from the first snapshot to  the second snapshot.  The  incremental source (the first snapshot) can be specified as the last component  of  the snapshot  name      (for  example, the part after the "@"), and it is assumed to be from the same file system as the second snapshot.  If the destination is a clone, the source  may  be  the origin snapshot,  which  must  be  fully  specified(for  example,      "pool/fs@origin", not just "@origin").


-I snapshot

Generate a stream package that sends all intermediary snapshots from  the  first snapshot to the second snapshot. For example,  "-I @a fs@d" is similar to 

"-i @a fs@b; 

-i @b fs@c;

-i@c fs@d".

 The incremental source snapshot may be specified as with  the -i option.

相关文章

网友评论

      本文标题:zfs send -i 与-I 参数对比

      本文链接:https://www.haomeiwen.com/subject/osyoxxtx.html