What flag would you use to compress a tar file with bzip2?

Disable ads (and more) with a premium pass for a one time $4.99 payment

Boost your Linux skills with the CompTIA Linux+ Certification Exam simulator. Engage with multiple choice questions and detailed feedback. Master Linux concepts and prepare for your exam with confidence!

To compress a tar file using bzip2, the correct flag is -j. When you create an archive with the tar command, the -j flag tells tar to use bzip2 compression. This is a preferred method for compressing tar files because bzip2 typically provides better compression rates than other algorithms like gzip.

When using the command, it often looks like this:

tar -cvjf archive_name.tar.bz2 /path/to/directory

In this command:

  • c is for creating the archive.
  • v enables verbose mode to see the files being processed.
  • f allows you to specify the name of the resulting archive.
  • j tells tar to apply bzip2 compression to the contents of the archive.

The other flags mentioned do not relate to bzip2. For instance, the -z flag is used for gzip compression, which is not what is asked for. The options -D and -g do not pertain to compression with the tar command in the context of bzip2. Thus, utilizing the -j flag is essential for achieving the desired bzip2 compression.

Subscribe

Get the latest from Examzify

You can unsubscribe at any time. Read our privacy policy