An archiving program for storing and retrieving files as a collection with support for data compression.
0
votes
1answer
54 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 ...
1
vote
0answers
26 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
26 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
21 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
29 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
20 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
0answers
21 views
Prepend prefix in tar [migrated]
I currently do in a shellscript very inefficiently:
cp -a $MYPATH /tmp/$VERSION
cd /tmp
tar cjf archive.tar.bz2 $VERSION
I want everything to be contained in the directory called $VERSION - is ...
0
votes
1answer
19 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
65 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
0answers
15 views
how to copy entire linux root filesystem to new hard drive on with ssh and tar [migrated]
I know I've found this information before, but can't remember the right google query.
I need to transfer an entire linux root filesystem off of a failing hard drive onto another computer with an ...
0
votes
1answer
26 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
11 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
20 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
27 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
...
0
votes
0answers
24 views
How do I use tar to transfer through ssh on a non standard port? [migrated]
I am trying to transfer all files from within a directory through tar as follows:
tar cz * | ssh -p 57310 root@example.com tar xzv -C /home/site/www
and the error that is returned is
stdin: is not ...
1
vote
2answers
19 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
22 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
61 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
13 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
2answers
57 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
14 views
What is the difference in various commands for compressing files in linux? [migrated]
What are the commands for compressing files in linux and what are the difference between them? (for example: tar, gzip, rar).
I'm working on Linux Mint 11 and doing a script for compressing files. I ...
0
votes
0answers
32 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
0answers
3 views
How can I copy a file between server using bsdtar? [migrated]
I'm looking for the fastest way of copying a file between 2 linux servers using bsdtar.
With normal tar, I would do something like:
ssh root@remote 'tar -cz -C /my/path/ big_file.txt' | tar -zxv
...
0
votes
2answers
64 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 ...
0
votes
0answers
15 views
How to tar/zip a parent directory exculding a child direcory [migrated]
I want tar a direcory which contains a number of child directories. But here my requirement is to tar the entire parent direcory excuding one child directory.
Is there any command or procedure for ...
-1
votes
1answer
31 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
17 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
74 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
34 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
104 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
18 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
32 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
22 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 ...
0
votes
2answers
161 views
Runtime.getRuntime.exec() not working for the linux command “tar -xvf filename.tar”
I am trying to untar a file on a Unix machine, using a Java batch application.
Source Code:
String fileName = "x98_dms_12";
Runtime.getRuntime().exec("gunzip "+ fileName + ".tar.gz");
...
0
votes
1answer
21 views
How to pass a node.js Buffer to a function which expects a Stream?
I have a Buffer with tar contents and I would like to parse this with tar node.js package, but all examples of use of this package are using .pipe() and streams - how can I pass buffer to tar package?
...
0
votes
1answer
105 views
Extracting tar.gz using java error
I am trying to extract an archive .tar.gz using java and I am getting Directory error that I do not seem to understand. Please help. I got this sample code from ...
0
votes
0answers
50 views
How do I import a .tar.gz file on Windows/WAMP/phpmyadmin
My web host just sent me a database back up from last week that I'd like to take a look at but it's a .tar.gz
phpmyadmin doesn't recognise the file in my import folder, just .sql files. And Sypex ...
0
votes
2answers
44 views
How to construct a TarFile object in memory from byte buffer in Python 3?
Is it possible to create a TarFile object in memory using a buffer containing the tar data without having to write the TarFile to disk and open it up again? We get the bytes sent over a socket.
...
0
votes
1answer
23 views
Adding files to a Tar Archive in PHP with different filenames
I'm currently using the Archive-Tar Pear extension for PHP to add a collection of files into a Tar Archive.
These files are stored on a filer with an extra extension
e.g.
...
0
votes
0answers
24 views
Invalid sed --transform expression in shell script using gtar
I'm running a shell script in Solaris 10, besides I run it in Ubuntu (obviously making some little changes) and get the same error. I want to change the name of the path when I execute a tar command ...
-1
votes
1answer
46 views
Do we need to specify compression level when extracting a compressed tar file? [closed]
From my tests so far on OSX 10.8 and CentOS 5.5, it looks like tar automatically deduces the compression type of an archive, i.e., I could do tar -xf <compressed archive> instead of doing tar ...
0
votes
1answer
63 views
How to netcat multiple files without tar?
Currently I am transporting files back and forth over telnet and I would like to send multiple files at once.
However, my target platform (a Blackfin processor) does not have "tar" enabled in its ...
1
vote
1answer
73 views
How to untar large tarball file within disk space constraints?
We need to extract five files from a tarball file that contains over 30 files and expands to about 60 GB upon unpacking. Unfortunately, we only have about 20 GB free on the machine. The five files ...
0
votes
2answers
37 views
Ignore full path for specific files when running 'tar' task in ant
I have my proj structure like this
myproj
-bin/myproj-run
-bin/myproj-cli
-lib/x.jar
-target/myproj.jar
I want to create a tar.gz that looks like
myproj
-bin/myproj-run
...
0
votes
2answers
46 views
tar only the file in the directory
How to tar only a file present in the directory. I have tried tar -cvf /tmp/test.tar /tmp/mylog.doc being in home diretory,but when I untar it the contents included tmpdirectory too. I need only the ...
0
votes
0answers
23 views
uninitialized constant Gem::Package on Heroku
Attempt to use Gem::Package::TarWriter on Heroku
Gem::Package::TarWriter.new(tar_str) do |writer|
ends with error:
uninitialized constant Gem::Package
but everything is working locally.
An ...
2
votes
1answer
111 views
How to get creation time of file (& other properties) that is archived inside tar?
I am writing a code in c++ using VS 2010 and Win32 to simply extract TAR files.
I have implemented the algorithm completely from scratch to do the extraction.
I have a TAR header structure like ...
1
vote
2answers
87 views
Rename directory after untar tgz file
I have bunch *.tgz files and when I untar them some how the directory name is different than the name of the tgz file. Example: I have the ab.tgz file and it get change to something like 2012_test_ab, ...
0
votes
1answer
108 views
Overwriting directory contents with tar file contents [closed]
Is there any way to extract a tar archive and remove other files in the destination directory which do not share a name with a file from the archive?
Suppose that I have a directory containing
...
1
vote
1answer
34 views
push branch tarball to github with git
I have a git branch with let us say 2 directories, with some code files in it:
htmlcode
jscode
and I've made a tarball of this 2 directories in the same branch with Git. But to create a tarball ...


