Calculations of Solid Properties Using Wien2k Package
Would you like to react to this message? Create an account in a few clicks or log in to continue.

How to unpack .tgz file on Linux ?

Go down

How to unpack .tgz file on Linux ? Empty How to unpack .tgz file on Linux ?

Post by Algerien1970 Wed 8 Jul - 16:27

To unpack the .tgz file on linux we use the command as follows:


Most Linux and open source software files are distributed in either .tgz or .tar.gz extensions format over the Internet. These files are gzipd tar balls and include multiple files and sub-directories into a single file using tar command. To save the bandwidth tar files are cpmpressed using gzip program.


Unpacking .tgz files command

The syntax is as follows:
tar zxvf fileNameHere.tgz
Or try the geeky [You must be registered and logged in to see this link.] syntax:
gunzip -c fileNameHere.tgz | tar xvf -

Examples

In this example, unpack a file called backups.tgz, enter:
 
tar zxvf backups.tgz
 
OR
 
gunzip -c backups.tgz | tar xvf -
 
Sample outputs:

tar: Removing leading '/' from member names
x Users/vivek/Downloads/db.txt
x Users/vivek/Downloads/resume.txt
x Users/vivek/Downloads/vendors.txt
x Users/vivek/Downloads/sales.txt
To unpack and put files in a different folder (directory) say /tmp/data, enter:
  tar zxvf backups.tgz -C /tmp/data ls -l /tmp/data 

tar command options



  • -z : Uncompress the resulting archive with gzip command.
  • -x : Extract to disk from the archive.
  • -v : Produce verbose output i.e. show progress and file names while extracting files.
  • -f backup.tgz : Read the archive from the specified file called backup.tgz.
  • -C /tmp/data : Unpack/extract files in /tmp/data instead of the default current directory.
Algerien1970
Algerien1970
Forum Manager
Forum Manager

Messages : 485
Date d'inscription : 2015-05-14

https://wien2k.forumalgerie.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum