An archiving program for storing and retrieving files as a collection with support for data compression.
-2
votes
1answer
23 views
How to recover files compressed in .taz file? [closed]
I try to decompress a .taz file (.tar.Z).I found this code that make .taz file in InputStream
but after decompression in InputStream then i didn't found how to recover the files which are compressed ...
0
votes
1answer
16 views
How to check whats there after unzipiping a tar file
So, Im writing a python script which will open a tar file and if there is a directory in it, my script will open that directory and check for files...
E = raw_input("Enter the tar file name: ") // ...
-1
votes
0answers
13 views
Unarchived zipped files in zipped folders [closed]
I am downloading large amounts of data from the internet that comes in the form of zipped folders that contain more zipped files.
folder1.tar >> file1.gz , file2.gz , file3.gz , ...
folder2.tar >> ...
0
votes
1answer
40 views
Rewriting this simple function using c++ STL/Boost instead of system() calls?
I need to archive the *.cpp files in a specific directory inside a gzipped tarball. I need this to happen during runtime as a means of documenting precisely what code (e.g., which versions of which ...
1
vote
1answer
48 views
Bash script exits with no error
I have a bash script that I'm running from DVD. This script copies multi-volume tar files from DVD to the local machine. Part-way through the copy, the script prompts the user to insert a second DVD, ...
3
votes
1answer
36 views
Extract .tar File to Current Directory Automatically with Shell Script
I'm totally new to the world of bash, and I'm currently working on a script that will loop through a large directory and extract any .tar files it finds into it's current location.
I'm using the ...
0
votes
0answers
12 views
have PHP access file within a tar without extracting the tar
Suppose if have a tar file with a bunch of html files, say foo.html
Is it possible to use PHP to directly serve the content of a file inside that tar without first extracting the tar
Ie. Suppose I ...
0
votes
0answers
26 views
SAC compiler fails under Mint 14. No helpful documentation on the internet
I tried several times to set up my sac2c compiler, but it didn't work despite
the fact that I don't think I did something wrong. I am running x86 Linux Mint
14 Nadia
official website of the Single ...
-1
votes
0answers
23 views
Compressed File In Linux using bash shell script failed to uncompress [closed]
I am writing a bash shell script which will move file from a directory to another directory and compress the file . It is working fine . But on uncompressing it , It shows the files are extracting but ...
0
votes
0answers
21 views
Extract gnutls library files of tar.xz and tar.lz for ubuntu 10.04 LTS
I am very new to linux platform and I want to extract gnutls for ubuntu. If I do,
$ls
then, it will show these files below.
gnutls-3.2.1.tar.lz
gnutls-3.2.1.tar.lz.sig
gnutls-3.2.1.tar.xz
...
0
votes
1answer
35 views
How to create MD5 checksum for tar files in maven
I have a set of tar files. I wanted to create MD5 checksum for those files using Maven. How to do it?
i created this tar files using maven-assembly-plugin.
0
votes
3answers
39 views
tar not found in archive when I use regular expression
When I use tar -xzf *.gz to extract all the .gz files in the current directory, I get "Not found in archive" errors. It is okay if I extract one by one or use a for-loop: for file inls *.gz; do tar ...
0
votes
1answer
25 views
Extract tarball with Apache Camel?
Is there a built-in / contributed component to gunzip a tarball? There is a gzip data format, but it does not seem to handle files.
0
votes
0answers
27 views
Is it possible to tar two different files at the same time? [migrated]
I need to tar two different directories at the same time. Is it possible to execute two instances of tar in parallel?
-1
votes
0answers
17 views
create tar of a folder using maven [duplicate]
How can I create a tar file with Maven?
I tried using maven-assembly-plugin, but somehow its not helping me.
Can anyone give me a simple example to create a tar of any folder using maven?
TIA
0
votes
1answer
49 views
Create tar archive without folders where only the name of the folder is known (recurring)
I have a synology DS213j. I have installed PhotoStation on it and it created some @eaDir folders in all my folders in order to create some thumbnails pictures.
I have for example this:
/photo
...
1
vote
0answers
16 views
How much additional disk space does tar require [migrated]
I am moving a tar.gz archive between servers and had to note that when extracting the archive a large amount of additional disk space is used. My original data size is 12G, 7.8G compressed and ...
0
votes
1answer
19 views
create a tar of a folder with numeric value having specific subfolder
I have a situation where I am dumping my webcontent folder to buildNumber folder each time building.
eg. Myproject/12345/webcontent
Now obviously, this buildNumber will keep on changing.
How can I ...
0
votes
2answers
23 views
SwiftMailer: can't open .tar.gz archives on Linux
I downloaded a couple of versions from
http://swiftmailer.org/downloads/archive
(tar.gz) but the archive manager says
tar: This does not look like a tar archive
tar: Skipping to next header
tar: ...
0
votes
2answers
42 views
Bash - creating tar for array items
I have an array with files and directories that I wish to add to the compressed tar (tar.gz). Originally I was planning to loop through the array and add each item to the tar, something like that:
...
-4
votes
0answers
28 views
Untaring Files in C# [closed]
I am looking for a way to untar files in C# the decompress the gzip stream files in side to process the data with, but I can't seem to find anything on doing this in C#. Any suggestion on how to do ...
0
votes
0answers
24 views
How to use tar with --listed-incremental option
I am trying to run the following command.
tar zcf ~/BAKUPS/test.tgz --listed-incremental=~/BAKUPS/snapshot ~/test/
It does create the tgz file, but I get the following errors.
tar: ...
0
votes
1answer
26 views
sudo tar is not working in bash script when calling from cron job [closed]
I created a ssh user 'backupuserssh' which I use its crontab to create cron jobs. There is a line in .sh file as follows:
sudo tar zcvfp backup.tar.gz /var/www/html
When I manually run the .sh ...
0
votes
1answer
83 views
Recursively listing the contents of a tar/zip archive
I understand how to get contents of zip/tar files, for example: http://www.if-not-true-then-false.com/2010/list-tar-tar-gz-tar-bz2-contents/
But in my case: I want to get all contents of a zip ...
2
votes
1answer
65 views
Compress to tar.gz on Grunt
This is driving me crazy, I'm just trying to compress a folder like:
tar -czvf app.tar.gz ./app/
an obviously it works just fine, but https://npmjs.org/package/grunt-shell produces a corrupted ...
0
votes
0answers
51 views
maven assembly archive with leading ./ folder
I’m using maven assembly plugin that creates a targz archive with this descriptor:
<assembly>
<formats>
<format>tar.gz</format>
</formats>
...
0
votes
1answer
32 views
While creating the tar file the entire path is created as the tar file
Hi I have created a shell script to backup the content from a directory. Its creating the file but its preserving the entire path.
Here is my code
#!/bin/sh
#creating the destination file
...
0
votes
1answer
33 views
Different ways to tar in Linux [closed]
Guys can you take a look at the following:
tar cf foo.tar foo/ bar/
tar cf foo.tar a.txt b.txt
tar -cf foo.tar foo/
are those 3 lines of commands the same as this?
tar cf foo.tar foo/
0
votes
1answer
43 views
Unable to install rvm on mac OSX 10.6.8
I've been unsuccessfully trying to install RVM on my Snow Leopard, but everysingle way I tried ended in the same way:
$ \curl -L https://get.rvm.io | bash -s stable --ruby=1.9.3
% Total % ...
0
votes
1answer
25 views
Compress a folder using tar in MATLAB
I try compress a folder in MATLAB using tar. I want to assign the current date as the name of the archive file. When I try
tar 'datestr(now)' FooFolder
Nothing happens. With
tar datestr(now) ...
1
vote
1answer
126 views
Compress on the fly a directory in tar.gz format using PHP
I want to compress (on the fly) a directory in tar.gz format using PHP. I know it can be done with exec or using this code (using ZIP format) but my host doesn't support exec and hasn't installed the ...
0
votes
1answer
48 views
Compressing multiple cpanel account into separate .tar.gz files
My WHM does incremental backup to a remote server. My question is how can compress the directories into separate file and move to a different folder. For example
main_dir
---account1
---account2
...
0
votes
1answer
16 views
tar creates a duplicate within itself. using exec( )
Discovered this when creating a tar.gz file using php's exec(). I get a file within the unzipped version called 'p'. It can be uncompressed and contains the same files as the parent, but does not ...
0
votes
1answer
41 views
get checksum of files inside tar archive on remote host
I succeed to obtain the md5sum of files inside archive without using file system thanks to :
tar tjf '/home/adup/mybackup.tar.bz2' | sort | grep -v '/$' |
( while read filename;
do md5=$(tar xjOf ...
0
votes
1answer
63 views
npm install not working for gzipped tarball
Hi I am trying to install a module globally which i made to a gzipped tarball.I downloaded the source from github and converted to a tar.gz and then i tried to install it using the following command
...
1
vote
2answers
26 views
Tarring files exclude the path before the folder i want to tar
Im trying to tar a set of subfolders and then tar its parent folder afterwards via a ruby script.
The structure is as follows:
/x/y/z/ParentFolder/Subfolder1
/x/y/z/ParentFolder/Subfolder2
...
0
votes
1answer
53 views
Issues uncompressing a tar.gz file
I have been trying to uncompress the following file:
sudo wget http://download.oracle.com/otn-pub/java/jdk/7u21-b11/jdk-7u21-linux-x64.tar.gz
with the following:
sudo tar zxvf ...
0
votes
2answers
74 views
archive file extracting in c
I'm just trying write c code like tar command in unix. my problem is extracting of archive file. you will see close end of file comment "problem here" . im trying extract archive file. this is binary ...
0
votes
0answers
28 views
SSH command gets terminated while compressing a directory
I am compressing a big directory about 50GB containing files and folder using putty SSH COMMAND LINE.i am using this command:
tar czspf file.tar.gz directory/
it starts work fine, but after some ...
-1
votes
1answer
189 views
Compress a folder UNIX tar/gzip [closed]
When I try to compress a folder using tar -zcvf directory.tar directory, I get the error message below.
Usage: tar {c|r|t|u|x}[BDeEFhilmnopPqTvw@[0-7]][bfk][X...]
[blocksize] [tarfile] [size] ...
0
votes
0answers
58 views
Extract tar.gz file in perl
I have a tar.gz file which is of appx 60 MB in size ... I need to extract the XML file insided that tar.gz file .. but I'm getting Out Of Memory error while using the below command..
use ...
0
votes
2answers
94 views
Untar tar.gz file using perl
I have a tar.gz file which has a HUGE XML inside it .. I need to extract the file using Archive::tar in perl ... I'm using the below code which is only extracting the zipped XML file from tar.gz file ...
-1
votes
1answer
46 views
.tar vs .tgz…what is the difference? [closed]
So I was just archiving an assignment for email submission, and was asked by the instructor to do so using the tar command and create a .tgz file, which I did with the following command line script:
...
0
votes
0answers
31 views
tar pre-run to evaluate expected size or amount of files
The problem:
I have a back-end process that at some point he collect and build a big tar file.
This tar receive few directories and an exclude files.
the process can take up to few minutes and i ...
3
votes
1answer
100 views
How do I extract a tar.Z file in java?
I can extract the zip、tar、tar.gz and tar.bz in apache.commons.compress. But I con't extract the tar.Z in apache.commons.compress or java. Who can help me?
0
votes
1answer
40 views
Comparing a file name pattern
I have a few files of type server.log."date" and data.log."date" in tar.gz archive where date is the date of the file creation.
Now I need to retrieve files of the type server.log.* and search for a ...
0
votes
1answer
284 views
Bash create .tar.gz on Solaris
I'm writting a bash script, which should create a .tar.gz archive from specified directory including file structure. This is a homework and I need it to work on Solaris system my school uses. That ...
0
votes
1answer
25 views
How to untar an archive that has only a single directory inside and rename it to a constant name
Most tar software releases do contain a directory with the version included, like product-1.2.3 and I am looking for a simple bash solution to untar such an archive to a directory that does not ...
0
votes
3answers
39 views
strncpy() core dump when I use Libtar in ubuntu12.04
I trace the coredump in the encode.c:33.
The source code like this:
if (t->options & TAR_GNU)
strncpy(t->th_buf.magic, "ustar ", 8); // here is the coredump ...
-2
votes
2answers
29 views
tar but dont want the directory path [closed]
I am trying to tar a directory from one filemount and untar at a different filemount within the same system. However I dont want the directory path
For example, I want to tar directory "sample" from ...


