0

如何对多个源目标进行 BTRFS增量备份,这样我就不必多次运行btrfs send

btrfs send -p /tmp/parent_subvol /tmp/incremental_backup_snapshot | btrfs receive /mnt/destination_drive1
btrfs send -p /tmp/parent_subvol /tmp/incremental_backup_snapshot | btrfs receive /mnt/destination_drive2
4

1 回答 1

0

在 bash 中:

btrfs send -p /tmp/parent_subvol /tmp/incremental_backup_snapshot | tee >(btrfs receive /mnt/destination_drive2) | btrfs receive /mnt/destination_drive1

(礼貌这个答案

于 2018-01-12T21:35:44.560 回答