About 36,700 results
Open links in new tab
  1. What command do I need to unzip/extract a .tar.gz file?

    Type man tar for more information, but this command should do the trick: tar -xvzf community_images.tar.gz To explain a little further, tar collected all the files into one package, …

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

    May 26, 2011 · 1389 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 …

  3. How do I extract a specific file from a tar archive? - Ask Ubuntu

    Jul 27, 2012 · Open the tar in Archive Manager from Nautilus, go down into the folder hierarchy to find the file you need, and extract it. On a server or command-line system, use a text-based …

  4. How to extract .tar.bz2? - Ask Ubuntu

    Dec 10, 2015 · Have you checked the man page for tar? Here is the part that I extracted from man page of tar for bz2: -j, --bzip2 filter the archive through bzip2 Remove -z from your options …

  5. installation - How to extract a tar.gz file - Ask Ubuntu

    2 Right click on the tar.gz file and select the extract here option from the drop-down menu, and it will be extracted on the same folder as the compressed file.

  6. What is the correct software to open a .tar file? - Ask Ubuntu

    Nov 8, 2013 · A .tar file is an archive, similar to a .zip file. It is compressed. As with a .zip file, you have to extract (decompress) the contents. You can extract the contents with any of several …

  7. How to unzip .tgz file using the terminal? - Ask Ubuntu

    Jul 19, 2014 · Great add also the option to extract files contained in archive.tar.gz to a new directory named archivetar --extract --file /path/to/file.tgz --one-top-level. That's often the …

  8. How do I install a .tar.gz (or .tar.bz2) file? - Ask Ubuntu

    Nov 10, 2014 · How you compile a program from a source Open a console Use the command cd to navigate to the correct folder. If there is a README file with installation instructions, use …

  9. Extract specific folder from tarball into specific folder

    Mar 24, 2016 · GNU tar by default stores relative paths. Whether an archive uses relative paths can be checked by running tar -tf archive | head -n 1, which will print the path of the first file in …

  10. 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 …