0Pricing
Linux Command Line & Bash Scripting Mastery · Lesson

Archiving and Compression (tar, gzip, unzip)

Learn how to create, extract, and compress archives using standard Linux tools like 'tar', 'gzip', and 'unzip'.

Why Archive & Compress?

When working with many files or large files, archiving and compression become super useful!

  • Archiving groups multiple files into a single file, making them easier to manage, move, or backup.
  • Compression reduces the size of a file or archive, saving disk space and speeding up transfers over networks.

These tools are essential for efficient file management in Linux.

Introducing 'tar' for Archiving

The tar command (short for Tape ARchiver) is the standard Linux tool for grouping files and directories into a single archive file.

It doesn't compress files by default, but it's the first step before compression. Think of it as putting many items into one box.

All lessons in this course

  1. Advanced Text Manipulation (sed, awk)
  2. Archiving and Compression (tar, gzip, unzip)
  3. Disk Usage & System Info (df, du, uname)
  4. Sorting & Deduplicating Data (sort, uniq, cut)
← Back to Linux Command Line & Bash Scripting Mastery