home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / utilities / archive / gnutar / readme < prev   
Encoding:
Text File  |  1994-07-04  |  1.9 KB  |  55 lines

  1.  
  2.  
  3. This is a patched version of GNUTAR. It differs from the original
  4. version in only one aspect: it works with FLAT:. This archive does
  5. also contain a new version of the FLAT-device. The docs are missing
  6. and can be found with the normal distribution of FLAT:. Several bugs
  7. have been fixed.
  8.  
  9.     Now what is the use of all this ? I use these two to transfer files
  10. from the HP-UX workstations at the university to my Amiga. There are two
  11. reasons for using tar over doscp: 1. Tar is ten times faster (30 seconds
  12. per Disk, DD or HD instead of over 5 Minutes) and 2. tar automatically
  13. splits large files and concatenates them afterwards. On HP I use this
  14. command to create the disks:
  15.  
  16.     tar cvvMf /dev/rdsk0 <files ...>
  17.  
  18. You need GNUTAR there, too. With HP tar (which is not so comfortable)
  19. try:
  20.  
  21.     tar cvvf /dev/rdsk0 <files...>
  22.  
  23. The options mean: c - create new archive. vv - be very verbose, ie.
  24. show what files you are working on right now and how long they
  25. are. f - use the next thing as device-name. BEWARE: tar cvvfM will
  26. create a file called "M" consisting of the contents of /dev/rdsk0
  27. and all other files ! M - Multi-volume archive. This means: if
  28. one disk is not enough, ask for the next one. HP tar asks for a new
  29. device in that case, so you have to type "/dev/rdsk0" all the time
  30. instead of just pressing <return>.
  31.  
  32. If you want to check your work:
  33.  
  34.     tar tvvMf /dev/rdsk0
  35.  
  36. No need to name the files again and you must omit the "M" if you use
  37. HP tar. t - test archive. This is the same as listing it.
  38.  
  39. On Amiga, you can extract it with
  40.  
  41.     tar xvvMf FLAT:PCx
  42.  
  43. where <PCx> is a CrossDOS-Device like PC0:. It may work with MessyDos,
  44. too, but I have not checked that. x - extract from archive To create an
  45. archive on Amiga:
  46.  
  47.     tar cvvf flat:pc2 <files ...>
  48.  
  49. Note that no wildcards are allowed and that no multi-volume archives
  50. are possible due to a remaining bug in either FLAT: or CrossDOS...
  51.  
  52. Have fun,
  53.  
  54. Aaron "Optimizer" Digulla
  55.