home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / unix / sysv386 / 13237 < prev    next >
Encoding:
Internet Message Format  |  1992-08-17  |  1.4 KB

  1. Path: sparky!uunet!mcsun!sun4nl!star.cs.vu.nl!newshost.cca.vu.nl!rvdp
  2. From: rvdp@sow.econ.vu.nl (Ronald van der Pol)
  3. Newsgroups: comp.unix.sysv386
  4. Subject: Re: how to write 525MB to Wangtek 525ES on Dell 2.1?
  5. Message-ID: <rvdp.714046351@yam>
  6. Date: 17 Aug 92 10:12:31 GMT
  7. References: <rvdp.713829991@yam> <Bt14A9.4p0@gator.rn.com>
  8. Sender: news@cca.vu.nl
  9. Organization: SOW-VU, Amsterdam, The Netherlands
  10. Lines: 33
  11.  
  12. larry@gator.rn.com (Larry Snyder) writes:
  13.  
  14. >rvdp@sow.econ.vu.nl (Ronald van der Pol) writes:
  15.  
  16. >>We have a Wangtek 525ES SCSI cartridge tape drive which should be
  17. >>able to write various formats (525, 250, 150 MB). But how do you
  18. >>choose the format? There don't seem to be different special files
  19. >>for different formats. So how should it be done?
  20.  
  21. >I belive the tape and drive determine this -- ie: put a 150 meg tape
  22. >in the drive will yield 250 megs, a 60 meg will yield 120 megs
  23.  
  24. Several people gave this answer. However, I have tried the following
  25. script:
  26.  
  27. #! /bin/sh
  28. TAPE=/dev/rmt/c0s0n
  29. count=1
  30. while dd if=/dev/zero of=$TAPE bs=1024k count=25 
  31. do
  32.     echo $count
  33.     count=`expr $count + 1`
  34. done
  35.  
  36. I used the Wangtek 5525ES tape drive and a DC6525 tape. The script
  37. wrote 9 25MB files and 13 records of the 10th file. So about 238 MB
  38. was written (with 9 FileMarks?). After a 'mt rewind' and a 'mt fsf 9'
  39. the tape looks to be  positioned at the end of the media. So how much
  40. is written to the tape, 250 MB or 525 MB?
  41.  
  42. --
  43. Ronald van der Pol
  44. rvdp@sow.econ.vu.nl
  45.