home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / unix / admin / 4354 < prev    next >
Encoding:
Text File  |  1992-07-28  |  2.0 KB  |  53 lines

  1. Newsgroups: comp.unix.admin
  2. Path: sparky!uunet!gatech!destroyer!ubc-cs!alberta!kakwa.ucs.ualberta.ca!news
  3. From: sherwood@fenris.space.ualberta.ca (Sherwood Botsford)
  4. Subject: Re: multiple dumps on EXB-8200 8mm tape
  5. Message-ID: <1992Jul28.193949.7190@kakwa.ucs.ualberta.ca>
  6. Sender: news@kakwa.ucs.ualberta.ca
  7. Nntp-Posting-Host: fenris.space.ualberta.ca
  8. Organization: University Of Alberta, Edmonton Canada
  9. References: <noca1fk@zuni.esd.sgi.com>
  10. Distribution: usa
  11. Date: Tue, 28 Jul 1992 19:39:49 GMT
  12. Lines: 39
  13.  
  14. Dave Olson writes
  15. > > In <1992Jul24.181553.10455@kakwa.ucs.ualberta.ca>  
  16. sherwood@fenris.space.ualberta.ca (Sherwood Botsford) writes:
  17. > | mt fsf's and bsf's behave this way too.  A bsf leaves the tape on the front  
  18. > | edge of the filemakr, and an fsf leaves it on the back.
  19. > | 
  20. > | So if you kill an operation, and want to reposition the tape to start it  
  21. again,  
  22. > | you must do this:
  23. > | mt bsf 1
  24. > | mt fsf 1
  25. > This is wrong.  If you want to record on an Exabyte 8200, you
  26. > must be in one of 3 places: BOT, BOT side of a FM, or EOD.  If I
  27. > remember correctly, the 8500 will also allow you to record at the EOD
  28. > side of a FM.  So you do not want to do the mt fsf 1 after the bsf
  29. > if you want to overwrite some data on the tape for 8200's
  30.  
  31. Oops.  You're correct.
  32.  
  33. The receipe I orignally gave  works for aborting and reading a file from the  
  34. tape. If you read, and then wish to overwrite a file (This makes all data after  
  35. this file inaccessible)
  36. mt bsf 
  37. mt weof 2
  38. mt bsf
  39. file write operation.  
  40.  
  41. You want to leave a filemark behind seperating the two files, but you can only  
  42. start writing at the beginning of a filemark, so you write two marks, then  
  43. backspace to the spot inbetween.
  44.  
  45. You are also correct about what happens when a program tries to read a  
  46. filemark.  Tar, and gnutar, however stop at the end of their file, and do not  
  47. read the filemark.  Thus you have to explicitly move the tape if you are using  
  48. these in scripts.
  49.  
  50. Thanks Dave for correcting my bad advice.  
  51.