From the course: Learning Linux Command Line

Unlock the full course today

Join today to access over 23,200 courses taught by industry experts.

Working with tar and zip archives

Working with tar and zip archives - Linux Tutorial

From the course: Learning Linux Command Line

Working with tar and zip archives

- [Instructor] In the early days of computer systems, and still to a very large extent today, data that needed to be archived for safekeeping was recorded to backup tapes and stored in a closet or basement, or, ideally, in a more secure and suitable location. In order to store files on a linear medium like tape, files are recorded to the tape one after another in sequence, like songs on an audio cassette. Instead of using a tape, we can also create a file that contains other files in the sequence. TAR files, short for tape archive files, are still incredibly common for distributing, sharing, and archiving files on Linux systems. This is because it's much easier in many ways to send and store one large file instead of many small files. TAR files often don't involve any compression, but there are ways to incorporate compression into a TAR file, which we'll see as we explore different software distribution styles.…

Contents