๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

Linux Beginner

What is Tar?

A utility for creating and extracting archive files that combine multiple files and directories into a single file.

Tar (Tape Archive) bundles files together. Common operations: tar -czf archive.tar.gz dir/ (create compressed), tar -xzf archive.tar.gz (extract). Compression formats include gzip (.tar.gz), bzip2 (.tar.bz2), and xz (.tar.xz).

Tar preserves file permissions, ownership, and directory structure. It is the standard archiving tool in Linux, used for backups, software distribution, and file transfers.

Related Terms

Find
A powerful command for searching files and directories based on various criteria like name, size, type, and modification time.
Systemd Timer
A systemd unit that triggers services on a schedule or at specific events, serving as a modern alternative to cron jobs.
Linux Kernel Module
A piece of code that can be loaded into the kernel at runtime to extend functionality without rebooting, such as device drivers and filesystems.
Crontab Syntax
The time specification format used in cron job scheduling, with five fields defining minute, hour, day of month, month, and day of week.
Logrotate
A utility that manages automatic rotation, compression, and removal of log files to prevent disk space exhaustion.
Pipe
A mechanism that connects the output of one command directly to the input of another, enabling command chaining.
View All Linux Terms โ†’