home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / sys / mac / apps / 20589 < prev    next >
Encoding:
Internet Message Format  |  1993-01-27  |  1.2 KB

  1. Path: sparky!uunet!pageworks.com!world!eff!sol.ctr.columbia.edu!howland.reston.ans.net!bogus.sura.net!udel!gatech!rutgers!igor.rutgers.edu!math.rutgers.edu!bohus
  2. From: bohus@math.rutgers.edu (Geza Bohus)
  3. Newsgroups: comp.sys.mac.apps
  4. Subject: Re: Mac disk on a SparcStation: a simpler method
  5. Message-ID: <Jan.26.14.43.33.1993.2653@math.rutgers.edu>
  6. Date: 26 Jan 93 19:43:33 GMT
  7. References: <1993Jan25.213007.23006@hou.amoco.com>
  8. Distribution: na
  9. Organization: Rutgers Univ., New Brunswick, N.J.
  10. Lines: 31
  11.  
  12.  
  13. I already answered the original question by email, but it seems that
  14. several people missed a very simple solution: tar. A small and free
  15. utility on the Mac can read/write disks in tar format. You need a high
  16. density disk formatted on the Mac and that's it. On the Unix you type
  17.  
  18. tar cvf /dev/fd0a file.names.here
  19.  
  20. to create an archive and
  21.  
  22. tar xvf /dev/fd0a 
  23.  
  24. to extract it. If you're using this frequently, you can also say
  25.  
  26. setenv TAPE /dev/fd0a
  27.  
  28. in your .login file, and forget the f and /dev/fd0a above, so you'll
  29. have
  30.  
  31. tar cv filenames
  32.  
  33. and 
  34.  
  35. tar xv
  36.  
  37. Oh, yes: tar for the Mac is on the archives, e.g. at umich it's
  38. util/compression/tar3.0.sit.hqx. 
  39.  
  40. Hope this helps. It is slightly simpler than going through DOS disks.
  41.  
  42. g
  43.