home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / SRC / msdos_diskaccess.lzh / MS_DISK_ACCESS / Customize < prev    next >
Text File  |  1990-05-10  |  3KB  |  66 lines

  1. How to configure Mtools for non-standard disk formats...
  2.  
  3. There are three approaches to the problem of trying to read and write
  4. MSDOS formatted diskettes in a Unix box doesn't have a floppy drive
  5. that meets the physical drive requirements.  For example, if your
  6. Unix box only has a 80 track floppy, you can:
  7.  
  8.     1) Get a device driver to "double step" the 80 track drive
  9.     to read and write to 40 track diskettes.
  10.  
  11.         Pros: No new hardware costs.
  12.         Cons: Device drivers are a bitch to write (or
  13.                     expensive to buy).
  14.               Success rates are low when using 80 track
  15.             drives to write 40 tracks.
  16.  
  17.     2) Get a conventional device driver and purchase a 40 track
  18.     drive.  You'll still need the device driver unless your 
  19.     Unix vendor was thoughtful enough to leave you some "extras".
  20.  
  21.         Pros: High success rates (40 track to 40 track)
  22.         Cons: The "foriegn" drive may cause trouble with
  23.             maintenance contracts
  24.  
  25.     3) Purchase a 80 track drive for your PC.  This exploits the
  26.     fact that MSDOS already has a configurable device driver
  27.     feature.
  28.  
  29.         Pros: You don't alter your Unix box in any way.
  30.         Cons: You'll have to process all MSDOS diskettes
  31.             thru the one PC before using Mtools.
  32.  
  33.                +--------+          +-----------+
  34.           +--> | Unix   |          |  IBM PC   |
  35.           |    | box    |          |  clone    |
  36.         mtools +--------+          +-----+-----+
  37.           |    | 80 trk |          | 80  | 40  |        MSDOS
  38.           +--> | track  | <------> | trk | trk | <----> world
  39.                +--------+          +-----+-----+
  40.                                     ^         ^
  41.                                     |  MSDOS  |
  42.                                     +- COPY --+
  43.  
  44. How to customize Mtools...
  45.  
  46. The program can be easily customized to accept non-standard disk
  47. formats.  For example, a popular disk format for Unix machines seems to
  48. be 80 track, double sided, 8 sector.  This doesn't conform to any of the
  49. IBM standard formats, but MSDOS 3.2 (or greater) can be made to format
  50. virtually anything using DRIVPARM (or DRIVER.SYS) in the CONFIG.SYS
  51. file.  Let's take a hypothetical case of a brand X Unix machine with a
  52. 80 track, double sided, 8 sector disk drive.  You could purchase an
  53. external 80 track drive for your IBM compatible computer and format the
  54. new drive D: under MSDOS with the following in your CONFIG.SYS file
  55.  
  56.     DRIVPARM=/D:2 /T:80 /S:8 /H:2 /F:2
  57.         or
  58.     DEVICE=DRIVER.SYS /D:2 /T:80 /S:8 /H:2 /F:2
  59.  
  60.  
  61. Emmet P. Gray                US Army, HQ III Corps & Fort Hood
  62. ...!unnet!uiucuxc!fthood!egray        Attn: AFZF-DE-ENV
  63.                     Directorate of Engineering & Housing
  64.                     Environmental Management Office
  65.                     Fort Hood, TX 76544-5057
  66.