Answers for "extract tgz file ubuntu"

4

how to extract tgz file in linux

tar zxvf file_name.tgz

where,
-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
Posted by: Guest on October-13-2020
3

linux extract tgz

tar zxvf file.tgz
Posted by: Guest on April-21-2020
0

extract .tz ubuntu

tar -xvzf /path/to/yourfile.tgz
Posted by: Guest on August-28-2021

Browse Popular Code Answers by Language