-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
22 lines (16 loc) · 825 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
This is the "inco" fast stream compress/decompression tool.
It uses (currently) the LZJB algorithm that's built into ZFS. It's not
very powerful, but it is very quick. Perfect for use in conjunction with
zfs send/recv over a slow (<= 1Gbps) network link.
Example use, sender:
zfs send zfs/havoc@snap1 | comp | mbuffer -O titan:1234
Example use, receiver:
mbuffer -I 1234 | decomp | zfs recv rpool/havoc
Note that the executable is "inco" which performs both compression and
decompression. The function may be selected in one of two ways:
1. If invoked as "comp" (via a symbolic link or renamed executable),
compression is selected. If invoked as "decomp", decompression will
occur.
2. "inco" will also accept the following options (among others):
-c : select compression
-d : select decompression