![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| bootable X86 dvd and flash archives | eeisken | SUN Solaris | 4 | 04-18-2008 01:36 AM |
| Unix Shell Archives | Visage | UNIX for Dummies Questions & Answers | 1 | 04-25-2007 06:59 AM |
| flash archives | BG_JrAdmin | UNIX for Dummies Questions & Answers | 1 | 12-25-2005 11:13 AM |
| Jumpstart and Flash Archives | rambo15 | UNIX for Advanced & Expert Users | 0 | 07-10-2005 11:31 AM |
| tar archives | sam_pointer | UNIX for Dummies Questions & Answers | 4 | 06-29-2001 02:12 AM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
segmenting tar archives
assuming i need to create a tar archive which would turn out to be bigger than 2gb, how could i segment the archive into say, 1 gb parts?
|
| Forum Sponsor | ||
|
|
|
||||
|
Off the top of my head I would say to try the command `split`. It allows you to break a file into chunks with a megabyte option. Might try something like :
Code:
split -b 1000m SomeReallyBigTarFile.tar Of course, after I posted this response I got to thinking: "How would I recombine that split parts?" That's a good question and I am thinking about it.. Hmmmm..... |
|
||||
|
Yea Auswipe, I thought of that too, but didn't offer it. It would be fairly easy to split out the file but hard to concatenate it later.
I think that you can span tapes for tar though. Try looking up info for spanning more than one tape... ![]() |
||||
| Google UNIX.COM |