Which three compression programs can tar use to natively filter an archive?

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/



Leave a Reply 4

Your email address will not be published. Required fields are marked *


BlueDevil

BlueDevil

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

Djuro

Djuro

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

Jef Adams

Jef Adams

B,C,D are correct

Dilliadis

Dilliadis

Correct answer
b, c, d,