Tagged Questions

An archiving program for storing and retrieving files as a collection with support for data compression.

learn more… | top users | synonyms

59
votes
6answers
31k views

Ruby - Convert File to String

I need an easy way to take a tar file and convert it into a string (and vice versa). Is there a way to do this in Ruby? My best attempt was this: file = File.open("path-to-file.tar.gz") contents = "" ...
14
votes
6answers
12k views

How do I extract a tar file in Java?

How do I extract a tar (or tar.gz, or tar.bz2) file in Java?
9
votes
6answers
8k views

Shell command to tar directory excluding certain files/folders

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 ...
9
votes
6answers
13k views

How do I tar a directory of files and folders without including the directory itself?

I typically do: tar -czvf my_directory.tar 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: ...
8
votes
4answers
139 views

Determine whether any files have been added, removed, or modified in a directory

I'm trying to write a Python script that will get the md5sum of all files in a directory (in Linux). Which I believe I have done in the code below. I want to be able to run this to make sure no ...
7
votes
4answers
345 views

Zip files with Java: Is there a limit?

I'm creating a backup routine for my application with Java. However, when the zip file is over 4GB, or has more than 65,000 files (approximately), the zip file is corrupted. I'm also testing the ...
7
votes
2answers
2k views

How to parse a tar file in C++

What I want to do is download a .tar file with multiple directories with 2 files each. The problem is I can't find a way to read the tar file without actually extracting the files (using tar). The ...
7
votes
3answers
8k views

How to check if a Unix .tar.gz file is a valid file without uncompressing?

I also found this link. But I was wondering if there is any ready made command line solution?
7
votes
3answers
1k views

“Untar” file on iPhone

I'm writing an iPhone app which downloads a tar-gzipped file from a Webserver, then needs to unarchive this file so that it can be copied into the app's Documents folder. I'm using tar/gzip because I ...
7
votes
2answers
5k views

How do I untar a subdirectory into the current directory? [closed]

How to I extract a subdirectory in a tarball into the current directory? Example, the tarball from wordpress: wordpress/ wordpress/wp-trackback.php wordpress/wp-config-sample.php ...
6
votes
3answers
4k views

Ruby: Create A Gzipped Tar Archive

What's the best way to create a gzipped tar archive with Ruby? I have a Rails app that needs to create a compressed archive in response to user actions. Ideally, it would be possible to write ...
6
votes
5answers
1k views

How to create a file of size more than 2GB in Linux/Unix?

I have this home work where I have to transfer a very big file from one source to multiple machines using bittorrent kinda of algorithm. Initially I am cutting the files in to chunks and I transfer ...
6
votes
8answers
15k views

What's a good tar utility for Windows?

I use Cygwin regularly, but I have a need these days to extract tar.gz and tar.bz2 files on other people's Windows machines. They don't want Cygwin; they need a GUI. I've tried 7-zip, which some ...
6
votes
12answers
1k views

Interesting usage of tar… but what is happening?

I saw the following interesting usage of tar in a co-worker's Bash scripts: `tar cf - * | (cd <dest> ; tar xf - )` Apparently it works much like rsync -av does, but faster. The question ...
5
votes
1answer
146 views

Does Python's `tarfile` module store the archives it's building in memory?

I'm working in a memory constrained environment where I need to make archives of SQL dumps. If I use python's built in tarfile module is the '.tar' file held in memory or written to disk as it's ...
5
votes
3answers
222 views

using R's internal tar function on specific files

R has a handy cross platform tar() function that can tar and gzip files. It seems this function was designed to tar up entire directories. I was hoping to use this function to tar and compress a ...
5
votes
6answers
2k views

More efficient way to find & tar millions of files

I've got a job running on my server at the command line prompt for a two days now: find data/ -name filepattern-*2009* -exec tar uf 2009.tar {} ; It is taking forever, and then some. Yes, there ...
5
votes
2answers
3k views

How can I use the Ant tar task and preserve file permissions?

Of course it can be done using the exec task, but my question is: Is it possible to do it using the tar task?
5
votes
6answers
2k views

TAR encode/decode library for iPhone (ideally cocoa)

Does anyone know of any library/code that will enable me to encode and decode .tar formatted data - that I can use in my iPhone project (preferably cocoa) Thanks in advance Craig UPDATE: I've taken ...
5
votes
4answers
529 views

Why would a TAR file be smaller than it’s contents?

I have a directory I’m archiving: $ du -sh oldcode 1400848 $ tar cf oldcode.tar oldcode So the directory is 1.4gb. The file is significantly smaller, though: $ ls -l oldcode.tar -rw-r--r-- 1 ieure ...
4
votes
2answers
78 views

Inject parameter in hardcoded tar command

I'm using a linux software solution that uses the tar command to backup huge amounts of data. The command which is hardcoded into the binary which calls the tar is: /bin/tar --exclude "/backup" ...
4
votes
4answers
1k views

c++ library to make tar files

Is there any c++ library available which can create tar files ? I have stream of text which I need to break into parts and make small files which should all reside in a tar ball ! Regards, Lalith
4
votes
3answers
329 views

How do you Tar an svn directory and filter out all the .svn files?

I'm trying to create a tar file for deployment of some code but I dont want all the .svn files being deployed. How can I filter these out? They're in multiple directories...
4
votes
1answer
906 views

Autotools - tar This does not look like a tar archive

After running make distcheck I get the message that I have successfully built the package and is ready for distribution. If I untar the tar.gz with tar -zxvf hello-0.2.tar.gz it successfully extracts ...
4
votes
4answers
492 views

How to extract a single file from a remote archive file?

Given URL of an archive (e.g. a zip file) Full name (including path) of a file inside that archive I'm looking for a way (preferably in Java) to create a local copy of that file, without ...
4
votes
3answers
2k views

reading tar file contents without untarring it, in python script

I have a tar file which has number of files within it. I need to write a python script which will read the contents of the files and gives the count o total characters, including total number of ...
4
votes
2answers
2k views

How to compress a directory with libbz2 in C++

I need to create a tarball of a directory and then compress it with bz2 in C++. Is there any decent tutorial on using libtar and libbz2?
4
votes
5answers
5k views

How can I archive a directory in Perl like tar does in UNIX?

I want to archive a directory (I don't know whether I can call "I want to tar a directory"). I want to preserve the access permissions at the other end when I un-tar it. I should I tackle this problem ...
3
votes
2answers
2k views

NPM install issues Ubuntu 11.04 [closed]

installing a fresh node with the following commands sudo apt-get install git-core curl build-essential openssl libssl-dev git clone https://github.com/joyent/node.git && cd node ./configure ...
3
votes
4answers
392 views

How can I untar multiple tar files over ssh?

I am attempting to untar multiple tar files over ssh: ssh user@hostname "cat /dir/file*.tgz" | tar xvzf - The above only works on the first file match on the remote server. The local (dest) server ...
3
votes
2answers
533 views

How to implement a Lua container (virtual file system) module loader in C#

Sounds a little bit scary isn't it? Some background information, I want to load a tar archive which contains some lua modules into my C# application using LuaInterface. The easiest way would be to ...
3
votes
1answer
182 views

Java, Archives, Linux & Cyrillic

I try to write an archiver in java, that creates TAR or ZIP archives, with correctly cyrillic file names, then it opened in linux. In windows I use org.apache.tools.zip, from ant: ...
3
votes
3answers
2k views

How to extract a tar.gz archive in PHP without system()?

I have been wondering for couple of days: Is there a way to extract files from a .tar.gz archive in PHP without resorting to calling system commands with system()? (So: either with a built-in ...
3
votes
1answer
359 views

Why does the tkinter progress bar makes things so much slower?

I have the following code for extracting a tar.gz file whilst keeping tabs on the progress: from __future__ import division import tarfile import os theArchive = ...
3
votes
7answers
2k views

tar: add all files and directories in current directory INCLUDING .svn and so on

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 ...
3
votes
1answer
976 views

Extract a tar.xz in C/C++

I am writing a program that downloads tar.xz files from a server and extracts them in a certain place. I am struggling to find a away of extracting the tar.xz file in the certain place. I am using Qt ...
3
votes
2answers
61 views

Why is the tar command marked as 'legacy'?

I don't know if this actually belongs here, maybe this question is more suitable to superuser. Well, last week I've wrote a small shell-script, where I used the tar command. As I read the man on the ...
3
votes
2answers
383 views

help with unix tar and grep loop

I would like some help in creating a loop that will take one of my files extension .tar.gz unzip it untar it and search the files inside (with extension .tlg) using grep -a >> output.text. In the ...
3
votes
2answers
383 views

append files to an archive without reading/rewriting the whole archive

I've got many files that I want to store in a single archive file. My first approach was to store the files in a gzipped tarball. The problem is, that I've to rewrite the whole archive if a single ...
3
votes
4answers
1k views

Listing the content of a tar file or a directory only down to some level

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. ...
3
votes
4answers
2k views

How can I build a tar from stdin?

How can I pipe information into tar specifying the names of the file?
3
votes
2answers
1k views

python tarfile adding files without directory hiearchy

When I invoke add() on a tarfile object with a file path, the file is added to the tarball with directory hiearchy associated .In other words, if I unzip the tarfile the directories in the original ...
3
votes
1answer
2k views

What exactly is the GNU tar ././@LongLink “trick”?

I read that a tar entry type of 'L' (76) is used by gnu tar and gnu-compliant tar utilities to indicate that the next entry in the archive has a "long" name. In this case the header block with the ...
3
votes
4answers
256 views

go to path and then tar?

Can you have tar travel to a certain direct and then tar files relative to that directory? All while using one command (tar)? For example instead of doing cd /home/test/backups; tar zvPcf ...
3
votes
3answers
4k views

Linux tar command: compressing a directory but exluding subdirectories

Scenario: I have a directory on a server that hosts my website that contains hundreds of user-submitted images. I am creating a backup script that takes all the images from the directory and ...
3
votes
2answers
6k views

unzip (zip, tar, tag.gz) files with ruby

I want do unzip a lot of zip files, is there a module or script that check which format the zip file is and decompress it? this should work on linux, other OSs I don't care for this.
3
votes
7answers
3k views

Extracting a tar.z file in C#

I would like to extract a file compressed in the tar.z (or .taz) format with the .NET framework. The problem is I cannot find any libraries wich support the LZW algorithm (often, zip, gzip and bzip2 ...
3
votes
3answers
2k views

python write string directly to tarfile

Is there a way to write a string directly to a tarfile? From http://docs.python.org/library/tarfile.html it looks like only files already written to the file system can be added.
3
votes
1answer
141 views

Why is %MEM increasing gradually even though I'm using Archive::Tar:Streamed?

I'm using Archive::Tar::Streamed to archive a 4GB directory containing very small small source code files and some jars. I'm using a system with 4GB RAM and using Archive::Tar::Streamed because I ...
3
votes
2answers
647 views

How can I tar files larger than physical memory using Perl's Archive::Tar?

I'm using Perl's Archive::Tar module. Problem with it is it pulls everything on to the memory and the does archiving and then writes on to the file system so there is limitation on the maximum file ...

1 2 3 4 5 8