How to Compress and Extract Files with TAR in Linux

April 24, 2022 8:43 AM — Posted by anaheimsigns — Posted at irvine sign company

The “tar” command stands for “tape archive” and the basic Unix command to archive files. By default the command will save the archive in a .tar file but it can also save it to a gzip file with the .gz extension. The tar command typically is available in most Linux distro.

There are also some alternatives such as the gzip and gunzip which specially handles the .gz file and unzip which is for the .zip extension. These alternatives may not always be available so check the distro package manager if they can be installed as an additional command.

General syntax for tar command:

tar [OPTIONS] [FILES]...
Create an archive
tar -cf [archive] [file]

The -c and -f options create a new archive file with the files specified to be archived.

Example: Archiving the new1.txt and new2.txt files into the example.tar archive without compression.

create an archivecreate an archive
List contents of an archive
tar -tf [archive]

The -t option allows you to view the contents of the archive file without decompressing it.

Example: Listing the contents of the example.tar file.

list archive contentlist archive content
Create a Gzip archive
tar czf [archive.tar.gz] [file]

Use the -z option with the tar command to create a new archive using gzip compression.

Example: Creating a tar file named example.tar.gz and zipping new1.txt and new2.txt into it.

create gzip archivecreate gzip archive
Extract an archive
tar -xf [archive]

The -x option allows you to extract files from an archive to your current working directory. It is also possible to extract certain files by specifying the file names.

Example: Extracting the archive example.tar, which contains the text files new1 and new2.

extract an archiveextract an archive
Add files to an existing archive
tar -rf [archive] [file_to_add]

To append a file or directory to an existing tar archive file, use the -r option. This option adds files to the end of an archive.

Example: Adding the new1.txt file to the example.tar archive.

add files to existing archiveadd files to existing archive
Merge archives
tar -Af [archive] [archive_to_be_added]

Use the -A option to append files from one archive to another. It adds files to another archive’s end.

Example: Merging the files of the file1.tar archive into the file2.tar archive.

merge archivemerge archive
Delete a file from an archive
tar --delete -f [archive] [file]

The --delete option allows you to delete a file or multiple files from an archive at once.

Example: Removing the new1.txt file from the example.tar archive.

delete file from archivedelete file from archive
Find differences between archive and file
tar -df [archive] [file]

To determine the differences between an archive and a file, use the -d option.

Example: Finding the difference between the example.tar archive and the new1.txt file.

diff archive and filediff archive and file
Add only new files to the archive
tar -uf [archive] [files_to_add]

Use the -u option to add files that are newer than the file in the archive. The newer files do not overwrite the older ones in the archive.

Example: Appending all new files in text format from the current directory to the example.tar archive.

add new files to archiveadd new files to archive
Extract archive to a specific directory
tar -xf [archive] -C [dirpath]

The -C option allows you to extract the archive to a certain directory by specifying the destination path.

Example: Extracting files from the example.tar archive to the dir/test folder.

extract archive to dirextract archive to dir

The post How to Compress and Extract Files with TAR in Linux appeared first on Hongkiat.

from Signage https://ift.tt/Ls1ixn5
via Irvine Sign Company

author avatar
anaheimsigns
Call OC Sign Company