Which three compression programs can tar use to natively filter an archive?
A.
Zip
B.
Bzip2
C.
Gzip
D.
Xz
E.
Cpio
Explanation:
Linux Archive Tools (tar, star, gzip, bzip2, zip, cpio)
Reference: http://www.usinglinux.org/archivers/
Which three compression programs can tar use to natively filter an archive?
Which three compression programs can tar use to natively filter an archive?
A.
Zip
B.
Bzip2
C.
Gzip
D.
Xz
E.
Cpio
Explanation:
Linux Archive Tools (tar, star, gzip, bzip2, zip, cpio)
Reference: http://www.usinglinux.org/archivers/
Answer: BCD
If you look in the manpage of tar you’ll find:
-J, –xz
filter the archive through xz
-j, –bzip2
filter the archive through bzip2
-z, –gzip, –gunzip, –ungzip
filter the archive through gzip
B,C,D
# man tar | grep filter
filter the archive through bzip2
filter the archive through xz
filter the archive through lzip
filter the archive through lzma
filter the archive through gzip
filter the archive through compress
B,C,D are correct
Correct answer
b, c, d,