How to Install tar in CentOS, RHEL, and Fedora

tar is a widely used command-line-based utility for combining a bunch of files and/or directories into one archive file, commonly known as a tarball for backup or distribution purposes. The tar command is used to create, maintain, modify, or extract tar archives.

[ You might also like: 5 Best Command Line Archive Tools for Linux ]

Note that tar does not compress archive files by default, but, it can compress the resulting archive using (or filter it through) well-known data compression programs such as gzip, bzip2, or xz if you supply the -z, -j, or -J flags.

Installing tar in CentOS, RHEL, and Fedora

The tar package comes pre-installed in most if not all RHEL-based distributions by default. But if it is not installed on your system, run the following command to install it.

# yum install tar   
OR
# dnf install tar 

If you are on another Linux distribution, you can install it as shown.

$ sudo apt install tar         [On Debian, Ubuntu and Mint]
$ sudo emerge -a app-arch/tar  [On Gentoo Linux]
$ sudo apk add tar             [On Alpine Linux]
$ sudo pacman -S tar           [On Arch Linux]
$ sudo zypper install tar      [On OpenSUSE]   
Install tar Command in Linux
Install tar Command in Linux

Once you have tar installed on your system, you can use it as follows. This example shows how to create an uncompressed archive file of a directory called test_app within the working directory.

# tar -cvf test_app.tar test_app/
Create Uncompressed Tarball
Create Uncompressed Tarball

In the above command, the tar flags used are -c which creates a new .tar archive file, -v enables verbose mode to show the .tar file creation progress, and -f which specifies the file name type of the archive file (test_app.tar in this case).

To compress the resulting archive file using gzip or bzip2, supply the -z or -j flag as follows. Note that a compressed tarball can also end with the .tgz extension.

# tar -cvzf test_app.tar.gz test_app/
OR
# tar -cvzf test_app.tgz test_app/
OR
# tar -cvjf test_app.tar.bz2 test_app/
Create Compressed Tarball
Create Compressed Tarball

To list the contents of a tarball (archived file), use the -t flag as follows.

# tar -ztf test_app.tar.gz
OR
# tar -ztvf test_app.tar.gz		#shows more details
View Contents of Tarball
View Contents of Tarball

To extract (or untar) an archive file, use the -x switch as shown.

# tar -xvf test_app.tar
OR
# tar -xvf test_app.tar.gz 

For more usage examples, see our following articles:

That’s all for now! In this article, we have shown how to install tar in CentOS, RHEL & Fedora and also showed some basic tar usage commands. If you have any queries, share them with us via the feedback form below.

Aaron Kili
Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

7 thoughts on “How to Install tar in CentOS, RHEL, and Fedora”

  1. You have titled installing ‘tar‘. Is it not tar comes preinstalled in all Unix/Linux similar to ‘vi’ editor. You have discussed about usage of tar rather than installing of tar program itself. Am I not right?

    Reply
  2. This type of articles people search before 10 years from now a days. People are smart. Basic ABC article don’t have any value in market don’t waste your time to publish such a oldie articles. People don’t read.

    Reply
    • @Rahul,

      This kind of article still useful for Linux beginners, who don’t have any prior knowledge about commands and all. Everyone goes through the beginning stage, it doesn’t mean that we learned everything…

      Reply

Got something to say? Join the discussion.

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.