Re: Joining Large Files

2002-09-08 Thread Bob Proulx
Mirek Dobsicek <[EMAIL PROTECTED]>: > oops, I tried it on my Sarge box, with own compiled > kernel 2.4.18 and it gave me only 2GB large file. > > What can be wrong? I have no clue. What filesystem are you running? I am using ext3 for the results I posted. Bob msg01254/pgp0.pgp Descript

Re: Joining Large Files

2002-09-08 Thread Bob Proulx
Elizabeth Barham <[EMAIL PROTECTED]> [2002-09-08 01:47:11 -0500]: > Would catting it into gzip be okay? As in: > > cat largeFile.* | gzip -c - > x.gz Yes. I assume you mean on a small file only system? Both cat and gzip (gzip > 1.3) know about large files. So this should be good up until the

Re: Joining Large Files

2002-09-08 Thread Elizabeth Barham
Would catting it into gzip be okay? As in: cat largeFile.* | gzip -c - > x.gz Elizabeth -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Joining Large Files

2002-09-07 Thread Bob Proulx
Miquel van Smoorenburg <[EMAIL PROTECTED]> [2002-09-07 15:04:25 +]: > You need a 2.4 kernel, at least glibc 2.2, and an up-to-date > distribution (so that programs like 'cat' are compiled against > the new library) to work with files > 2GB. Just to pick at a very, very small point. The cat p

Re: Joining Large Files

2002-09-07 Thread Miquel van Smoorenburg
In article <[EMAIL PROTECTED]>, Stephen A. Witt <[EMAIL PROTECTED]> wrote: >I've got a 12 GB tar file (full of mp3 files) that I split up into 1 GB >segments using 'split'. My intention was to transfer these segments to >another computer and join them together using 'cat'. But it seems that >cat i

Re: Joining Large Files

2002-09-07 Thread patrick
--- "Stephen A. Witt" <[EMAIL PROTECTED]> wrote: > I've got a 12 GB tar file (full of mp3 files) that I split up into 1 > GB > segments using 'split'. My intention was to transfer these segments > to > another computer and join them together using 'cat'. But it seems > that > cat is limited to the

Joining Large Files

2002-09-07 Thread Stephen A. Witt
I've got a 12 GB tar file (full of mp3 files) that I split up into 1 GB segments using 'split'. My intention was to transfer these segments to another computer and join them together using 'cat'. But it seems that cat is limited to the 2 GB filesize limit. I've looked all around the net in an atte