home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / c / tarsplit.readme < prev    next >
Text File  |  1987-04-11  |  2KB  |  51 lines

  1. Article 1404 of comp.sys.amiga:
  2. Path: mcdsun!noao!hao!hplabs!decwrl!decvax!ucbvax!jade!violet.berkeley.edu!mwm
  3. From: mwm@violet.berkeley.edu (Mike Meyer)
  4. Newsgroups: comp.sys.amiga
  5. Subject: Tarsplit.c & tar
  6. Message-ID: <2177@jade.BERKELEY.EDU>
  7. Date: 13 Jan 87 03:48:57 GMT
  8. Sender: usenet@jade.BERKELEY.EDU
  9. Reply-To: mwm@violet.berkeley.edu(Mike Meyer)
  10. Organization: University of California, Berkeley
  11. Lines: 243
  12.  
  13.  
  14. Ok, here's the source to tarsplit.c. It's a straight port of the OS/9
  15. program that does the same thing. Major gotcha: tarsplit doesn't do
  16. name translation, so '.' and '..' don't work. For instance, you can't
  17. do "tar cf - ." on the Unix end and then take it apart on the Amiga,
  18. as "." isn't a recognized file name.
  19.  
  20. Recomended useage: cd to the parent of the directory you want to
  21. download, and do:
  22.  
  23.     tar cbf 1 download.tar download_dir
  24.  
  25. This will tar download_dir into download.tar. Setting the blocksize to
  26. 1 causes minimal wasted space in the image. I haven't tried
  27. compressing the result; gotta do that soon. After downloading it, cd
  28. to the place you want the directory to appear in, and do "tarsplit
  29. download.tar" (or whever you put it). For small files (*NOT* the mg
  30. sources!), putting things in ram: works fine.
  31.  
  32. For those who don't want to compile it, or don't trust your compiler,
  33. I put the binary in the pub/amiga directory on ucbvax. Matt should
  34. feel free to delete it, though. I didn't uuencode it, and I didn't
  35. touch Matt's index.
  36.  
  37. Note: This has not been tested under either Lattice 3.10, or any
  38. version of MANX. It's also the second posting, having been posted
  39. nearly a year ago; right after I did it.
  40.  
  41. Finally, I've heard rumors of a PD tar. If I can find a copy, I'll
  42. probably try and post it, but not do the port.
  43.  
  44.     <mike
  45.  
  46. P.S. - since he doesn't mention it in the file, I'll do it here. The
  47. original OS/9 version of this was written by James Jones (the hacker
  48. from Mars :-). James can currently be found as jejones@mcrware.UUCP.
  49.  
  50. -------------------- cut here, only one file --------------------
  51.