About 10,100,000 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. Shell command to tar directory excluding certain files/folders

    Jun 12, 2009 · Is there a simple shell command/script that supports excluding certain files/folders from being archived? I have a directory that need to be archived with a sub directory that has a number of very...

  3. expo - EAS Build fails with tar Permission Denied errors (app/assets ...

    Mar 29, 2025 · I'm trying to generate an .aab file using EAS Build for my React Native app (managed workflow, non-ejected). I’ve followed the standard procedure and my eas.json is as follows: { "cli":...

  4. tar - File removed before we read it - Stack Overflow

    May 20, 2019 · Because of the -h flag, tar needs to follow any symbolic links it finds. Any broken symbolic link will give the error "File removed before we read it" e.g. symbolic links that no longer lead to valid files.

  5. tar: Unrecognized archive format error when trying to unpack flower ...

    Feb 16, 2017 · tar: Error opening archive: Unrecognized archive format In my case the actual file didn't exist anymore (checked by putting the link in the browser), so my tar file was actually an error page (probably 404 page).

  6. linux - Tar error: Unexpected EOF in archive - Stack Overflow

    Aug 25, 2016 · I tar a directory full of JPEG images: tar cvfz myarchive.tar.gz mydirectory When I untar the archive: tar xvfz myarchive.tar.gz I get an error: tar: Unexpected EOF in archive Looking at the o...

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

  8. gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error ...

    Sep 22, 2016 · I have a Bash script that creates a .tar.gz file, encrypts, and then sends it to a drive. However, I cannot open the .tar.gz file afterwards. Here is my process... Bash script that encrypts. #!/bin...

  9. shell - Extracting .tar file isn't working - Stack Overflow

    Now I'm trying to extract the .tar file using tar -xv filename.tar. My Problem The extraction doesn't seem to be working! After I've typed the tar -xv filename.tar command and hit enter, the shell isn't returning any output, and doesn't seem to complete the extraction. It stays indefinitely with the empty line returned after hitting enter.

  10. How can I decompress an archive file having .zst or tar.zst?

    Jul 27, 2017 · Suppose I have two files: file1.zst file2.tar.zst How can I decompress these files in terminal?