How do I create a tar file under Linux using command line options?
You need to use the tar command to create an archive (also known as tar ball) under Linux operating systems.
Linux tar command syntax
The syntax is as follows to create a tar file:
tar -cvf output.tar /dirname
OR
tar -cvf output.tar /dirname1 /dirname2 filename1 filename2
OR
tar -cvf output.tar /home/vivek/data /home/vivek/pictures /home/vivek/file.txt
OR
tar -cvf /tmp/output.tar /home/vivek/data /home/vivek/pictures /home/vivek/file.txt
Where,
- c : Create a tar ball.
- v : Verbose output (show progress).
- f : Output tar ball archive file name.
Example
Create a tar ball called /tmp/data.tar for /home/vivek/data directory, enter:
tar -cvf /tmp/data.tar /home/vivek/data
To View a Tar Ball Contains (list file inside a tar ball)
Type the following command:
tar -ctvf /tmp/data.taTo Extract a Tar Ball
Type the following command to extract /tmp/data.tar in a current directory, enter:
tar -xvf /tmp/data.taType the following command to extract /tmp/data.tar in a directory called /home/sales/data, enter:
tar -xvf /tmp/data.tar -C /home/sales/data
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop











{ 1 comment… read it below or add one }
To View a Tar Ball Contains (list file inside a tar ball)
Type the following command:
tar -ctvf /tmp/data.ta
This should be tar -tvf /tmp/data.tar