Speed problems with tar'ing a 500Gb directory on an eSATA drive


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Speed problems with tar'ing a 500Gb directory on an eSATA drive
# 8  
Old 04-13-2012
Quote:
Originally Posted by methyl
Can you use walknet? i.e. take the external disc drive to the target computer.
You mean like...
(that xkcd comic that I can't link to as I haven't made 5 posts yet)

Actually, that's how I got the data onto the HD in the first place...taking it on a train and leaving it with someone else over a weekend. I'll discuss cutting out the middleman in future with them, but I suspect there will be issues with access control on our respective systems (ie I might have to get the train there to log in for him, or vice versa).
# 9  
Old 04-16-2012
Thanks Rbatte1!

One slight modification
cd source_directory tar -cvf - . | rsh target_gateway "ssh -X target_server; cd target_directory ; tar -xvf -"seems to be working Smilie

I would never have guessed that a dot and a hypen would descend through all the subdirectories. How do you learn this type of syntax?
This User Gave Thanks to omnisppot For This Post:
# 10  
Old 04-16-2012
The hyphen has nothing to do with that. Neither does the dot, really. tar is simply recursive by design. Give it one folder and it'll archive all the contents. I don't think you can even turn that off.

There literally is a folder named dot no matter where you are. It's just short form for "current folder" and will work with any program that uses folders. Try ls . There's also a .. which means "one folder up from the current folder". These folder shortcut things are an extremely old feature and found nearly everywhere.

The hyphen tells tar to write to standard output instead of to an actual file. It'd spew it straight to the terminal if you didn't redirect it. But since you put a pipe after it, it puts it straight into rsh.

On the other end, where you extract with tar, the same - is taken to mean "read from standard input". And what is standard input? If you didn't pipe anything into it, it'd be reading straight from your terminal, but because of the pipe, it's reading from the program before -- tar.

So in this manner you create a tarball, feed it over the network, and extract it on the other end.

Last edited by Corona688; 04-16-2012 at 02:35 PM..
# 11  
Old 04-16-2012
If rsync is available I would use it, I had in the past tar | rsh conveyer fail when dealing with several gigabytes worth of data, but never had problems with rsync
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Speed up extraction od tar.bz2 files using bash

The below bash will untar each tar.bz2 folder in the directory, then remove the tar.bz2. Each of the tar.bz2 folders ranges from 40-75GB and currently takes ~2 hours to extract. Is there a way to speed up the extraction process? I am using a xeon processor with 12 cores. Thank you :). ... (7 Replies)
Discussion started by: cmccabe
7 Replies

2. UNIX for Dummies Questions & Answers

Tar-ing folders in a folder

How do I create individual tars of a all the directories in a directory? I have a directory called 'patients', each patient has a directory in the patients directory. I want to create tars such that each patient has their own tar file. Thanks! (5 Replies)
Discussion started by: HappyPhysicist
5 Replies

3. Shell Programming and Scripting

tar command dont tar to original directory

HI, if I have a tarfile called pmapdata.tar that contains tar -tvf pmapdata.tar -rw-r--r-- 0/0 21 Oct 15 11:00 2009 /var/tmp/pmapdata/pmap4628.txt -rw-r--r-- 0/0 21 Oct 14 20:00 2009 /var/tmp/pmapdata/pmap23752.txt -rw-r--r-- 0/0 1625 Oct 13 20:00 2009... (1 Reply)
Discussion started by: borderblaster
1 Replies

4. Shell Programming and Scripting

grep'ing and sed'ing chunks in bash... need help on speeding up a log parser.

I have a file that is 20 - 80+ MB in size that is a certain type of log file. It logs one of our processes and this process is multi-threaded. Therefore the log file is kind of a mess. Here's an example: The logfile looks like: "DATE TIME - THREAD ID - Details", and a new file is created... (4 Replies)
Discussion started by: elinenbe
4 Replies

5. UNIX for Advanced & Expert Users

iSCSI speed problems

Hi all. I was able to set up an IBM Ultrium LTO 4 tape drive to use iSCSI (using open-iscsi drivers) to communicate with Red Hat, but it's going really slow, maxing out in tar and dd tests at like 16 MB/s (using a block size of 128k). The thing is rated for 30MB/s. I feel like even though I have... (1 Reply)
Discussion started by: jeriryan87
1 Replies

6. UNIX for Dummies Questions & Answers

Tar-ing the correct directories

Hi all, my directory structure is as follows /a/b/c. I would like to tar the /a directory including the subdirectories b and c. i intend to use the command tar -cvfz a.tgz a/ My question is where do i execute the command? do i execute it at the '/' prompt or at '/a' prompt ? My concern at... (1 Reply)
Discussion started by: new2ss
1 Replies

7. UNIX for Dummies Questions & Answers

tar'ing and regular expressions

Hi, How do I tar all but a specific set of files in a directory? Is it possible to use regular expressions in the tar command? I want to tar all files except those beginning with D. I tried this tar -cvf files.tar ^ but this didn't work. Anyone any ideas. Thanks (2 Replies)
Discussion started by: sirbrian
2 Replies

8. UNIX for Advanced & Expert Users

tar problems using Sony AIT drive

Recently we brought up a Spectralogic 2K Tape Library that had been out of service for about 3 years to replace a DDS-4 tape drive unit as our main backup device. Everything seemed to go fine but now I have run into a little problem. System details: FBSD 6.1 SpectraLogic 2K library with a... (1 Reply)
Discussion started by: thumper
1 Replies

9. UNIX for Dummies Questions & Answers

tar'ing and zipping files

If I have a directory /directory1 and want to tar and zip everything in it into a file new_tar.tar.gz on disk (not tape) How can I do it? I tried tar -cv /new_tar.tar /directory1/* But I got an error: tar: /dev/rmt/0: No such device or address (4 Replies)
Discussion started by: FredSmith
4 Replies

10. Solaris

Error tar'ing files to tape

I'm trying to tar a bunch of files off to a tape, but for one specific file (it is fairly large, roughly 10Gb) I get the error: too large to archive Does tar have a limit of the size of file it can write off to tape? I'm using SunOS 5.8. Thanks! -Fred (6 Replies)
Discussion started by: FredSmith
6 Replies
Login or Register to Ask a Question