home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / unix / admin / 6631 < prev    next >
Encoding:
Text File  |  1992-12-14  |  2.5 KB  |  61 lines

  1. Newsgroups: comp.unix.admin
  2. Path: sparky!uunet!pipex!warwick!doc.ic.ac.uk!cc.ic.ac.uk!imperial.ac.uk!vulture
  3. From: vulture@imperial.ac.uk (Thomas Sippel - Dau)
  4. Subject: Re: What is the capacity of a standard 9track tape
  5. Message-ID: <1992Dec14.191826.14285@cc.ic.ac.uk>
  6. Sender: vulture@carrion.cc.ic.ac.uk (Thomas Sippel - Dau)
  7. Nntp-Posting-Host: cscgc
  8. Reply-To: cmaae47@imperial.ac.uk
  9. Organization: Imperial College of Science, Technology and Medicine
  10. References: <1992Dec10.163114.8149@nsisrv.gsfc.nasa.gov> <Bz21su.4H9@news.cso.uiuc.edu> <EJH.92Dec10181518@khonshu.colorado.edu> <Bz3J6x.E07@news.cso.uiuc.edu>
  11. Date: Mon, 14 Dec 92 19:18:25 GMT
  12. Lines: 47
  13.  
  14. In article <Bz3J6x.E07@news.cso.uiuc.edu>, ejk@ux2.cso.uiuc.edu (Ed Kubaitis - CCSO) writes (on bytes and gaps):
  15. -   
  16. - Bzzzt! Even a rough first order estimate needs to take block size into
  17. - account. Here are nominal capacities for a 2400' 6250 tape in megabytes
  18. - for various block sizes (in bytes):
  19. -    |Blksz  MBytes
  20. -    |   80       7
  21. -    |  800      53
  22. -    | 2000      92
  23. -    | 4000     122
  24. -    | 8000     145
  25. -    |16000     161
  26. -    |32000     170
  27. -    |64000     174
  28. -       
  29. - Attached is the perl script that generated the table.
  30. - ----------------------------------
  31. - Ed Kubaitis (ejk@ux2.cso.uiuc.edu)
  32. - Computing & Communications Services Office - University of Illinois, Urbana
  33. - ================================================================================
  34. - #! /usr/bin/perl
  35. - print "Blksz  MBytes\n";
  36. - for $blksize((80, 800, 2000, 4000, 8000, 16000, 32000, 64000)) {   
  37. -    $cap = $blksize*(2400*12/(($blksize/6250)+.3));
  38. -    printf("%5d     %3d\n", $blksize, $cap/1e6);
  39. -    }
  40.  
  41. How about enhancing this script to allow for:
  42.  
  43.    o  other densities (31.5 and 63 bit/mm (or 800, 1600 whatsits))
  44.    o  different interblock gap size in these formats
  45.    o  tape mark (file mark) size
  46.    o  number of label blocks per file (varies across systems and file formats)
  47.    o  number of bytes wasted in the file (strip trainling space in text files)
  48.    o  number of useless bytes introduced by the file format (line images, say)
  49.  
  50. We'd like to be sure ...
  51.  
  52.                                     Thomas
  53. -- 
  54. *** This is the operative statement, all previous statements are inoperative.
  55. *   email: cmaae47 @ ic.ac.uk (Thomas Sippel - Dau) (uk.ac.ic on Janet)
  56. *   voice: +44 71 589 5111 x4937 or 4934 (day), or +44 71 823 9497 (fax)
  57. *   snail: Imperial College of Science, Technology and Medicine
  58. *   The Center for Computing Services, Kensington SW7 2BX, Great Britain
  59.