About 19,700 results
Open links in new tab
  1. How to unzip .tgz file using the terminal? [duplicate]

    Jul 19, 2014 · The above command will extract the contents of the mongodb-linux-x86_64-2.6.3.tgz archive while preserving the archive's hierarchical tree directory structure. A similar command …

  2. What command do I need to unzip/extract a .tar.gz file?

    I received a huge .tar.gz file from a client that contains about 800 mb of image files (when uncompressed.) Our hosting company's ftp is seriously slow, so extracting all the files locally and …

  3. tar - How to extract *.tgz.part-*? - Ask Ubuntu

    Oct 9, 2019 · You should concatenate (cat) the split tar-gz files, decompress them (gunzip) and extract the tar archive (tar -x). You can extract split .gz archives directly using the zcat command which …

  4. How can I view the contents of tar.gz file without extracting from the ...

    Dec 19, 2013 · I want to see the contents (list of files and folders) of an archive, for example a tar.gz file without extracting it. Are there any methods for doing that?

  5. tar - How to uncompress separated tgz files? - Ask Ubuntu

    Creating a temporary file is not necessary and might be unfeasible if the archive is too big. See my answer to a similar question for solutions without temporary files.

  6. command line - unzip .tar.gz file in terminal - Ask Ubuntu

    Jan 20, 2021 · How do I unzip a .tar.gz file in the terminal? I'm not able to do so in GUI, because I want to extract it to a /usr directory, and will need the sudo command.

  7. .tgz extract error like data --format violated - Ask Ubuntu

    Jul 22, 2016 · I have BSP folder for embedded computer.for booting from on board manufacturer given one .tgz file.I am trying extract those file using the cmd like tar -zvxf filename.tgz I have logged as …

  8. How to extract files to another directory using 'tar' command?

    May 26, 2011 · 1390 To extract an archive to a directory different from the current, use the -C, or --directory, tar option, as in tar -xf archive.tar -C /target/directory Note that the target directory has to …

  9. backup - Encrypt tar.gz file on create - Ask Ubuntu

    I have a script which creates a nightly backup of several directories. It is created using tar -czf, and the destination tar.gz file path is on a mounted network directory. The resulting file is a...

  10. bash - Compress in .tgz - Ask Ubuntu

    Nov 29, 2011 · I want to compress files in .tgz. I know how to make tar.gz(with tar and gzip) and some people say it is almost the same, but I need to make a .tgz, how??