About 50 results
Open links in new tab
  1. archive - How do I tar a directory of files and folders without ...

    I typically do: tar -czvf my_directory.tar.gz my_directory What if I just want to include everything (including any hidden system files) in my_directory, but not the directory itself? I don't want:

  2. linux - tar: Error is not recoverable: exiting now - Stack Overflow

    Oct 16, 2010 · The tar program can use external compression programs gzip, bzip2, xz by opening a pipe to those programs, sending a tar archive via the pipe to the compression utility, which …

  3. linux - tar: add all files and directories in current directory ...

    I try to tar.gz a directory and use tar -czf workspace.tar.gz * The resulting tar includes .svn directories in subdirs but NOT in the current directory (as * gets expanded to only 'visible' files ...

  4. Tar: Cannot stat: No such file or directory - Stack Overflow

    Mar 11, 2024 · Tar: Cannot stat: No such file or directory Asked 1 year, 11 months ago Modified 1 year, 9 months ago Viewed 925 times

  5. Tar a directory, but don't store full absolute paths in the archive

    Sep 8, 2013 · There are already many questions about tar and backuping in stackoverflow and at other places on the web, but most of them ask for dropping the entire sub-directory structure (flattening), or …

  6. bash - Listing the content of a tar file or a directory only down to ...

    I wonder how to list the content of a tar file only down to some level? I understand tar tvf mytar.tar will list all files, but sometimes I would like to only see directories down to some level.

  7. linux - How do I tar a directory without retaining the directory ...

    tar -czf destination.tar.gz -C source/directory $(ls source/directory) This solution: Includes all files and folders in the directory Does not include any of the directory structure (or .) in the final product Does …

  8. what does -zxvf mean in tar -zxvf <filename>? [closed]

    I have seen on many websites commands like this what does the "-zxvf" or the similar commands stand for? tar -zxvf &lt;filename&gt; tar xvf &lt;filename&gt;

  9. How to load a Docker image from a tar file - Stack Overflow

    Jan 28, 2021 · The .tar created from docker save provides a ton of context that is lost when imported with docker import -- using docker load -i instead maintains that context and allows the image to be …

  10. installation - How to install Python packages from the tar.gz file ...

    Mar 15, 2016 · I've extracted the files from the tar.gz file and there is a "setup" file within but it's not doing much for me. If someone could explain how to install python packages in this manner without …