home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 58 / af058sub.adf / fmsdisk2.lha / fms.doc < prev    next >
Text File  |  1990-04-17  |  2KB  |  68 lines

  1.  
  2.                    FMS.DOC
  3.  
  4.             FILE BASED TRACKDISK SIMULATOR
  5.  
  6.     * Useful for creating a floppy-like partition on your harddisk
  7.       (so you can diskcopy to a floppy) WITHOUT actually having to
  8.       create a special partition for it.
  9.  
  10.     * Useful for testing new filesystems and such
  11.  
  12.     * Up to 32 Units, OFS or FFS selectable via Mountlist
  13.  
  14.     * THIS IS NOT A RAM DISK.  Operation will be necessarily slower
  15.       than your HD, but that isn't the point behind using the device!
  16.  
  17.     * Advantages over RAD / Other ram disks ... doesn't use RAM.
  18.       Designed for hard disk users.  By putting the 'partition'
  19.       file on the hard disk, it sticks around and you don't loose
  20.       the data you wrote to it, so mounting it again after reboot
  21.       or power up yields whatever was there before.
  22.  
  23.     The fmsdisk.device simulates a trackdisk.device for fixed media
  24.     via a DOS file (one file per unit).  Simply setup your Mountlist,
  25.     mount the simulated trackdisk, and format, and you are off.
  26.  
  27.     This has particular advantages for those hard disk users who make
  28.     lots of distributions, like me.  I can create a simulated partition
  29.     using fmsdisk.device that uses exactly the same parameters as
  30.     my favorite floppy device (and run the appropriate file system,
  31.     in this case the OFS).  After formatting, I can copy the distribution
  32.     onto the simulated partition and then DiskCopy it to the floppy.
  33.  
  34.     This also has advantages to people fooling around with writing their
  35.     own file systems, as the disk file used may be examined at any time
  36.     through normal programs while the 'filesystem' is running.
  37.  
  38.                INSTALLATION
  39.  
  40.     copy fmsdisk.device devs:
  41.  
  42.     Assign FMS: to some empty directory on your hard disk (doesn't have
  43.     to be empty, but might as well be clean, eh?).  Files will be
  44.     named FMS:Unit%d
  45.  
  46.     Add appropriate entries to your Mountlist (see example Mountlist).
  47.  
  48.     Mount FF0:
  49.  
  50.     ; Only need to format the first time to create the file.
  51.     Format drive FF0: name "FF0" NOICONS
  52.  
  53.     Repeat above two lines for each simulated partition you wish to add.
  54.  
  55.             ------------------
  56.              VERSION HISTORY
  57.  
  58. 2.0
  59.     - doesn't Seek() if the file is already positioned at the
  60.       requested next read/write sector.
  61.  
  62.     - default buffers set to 10 instead of 2
  63.  
  64.     - overall performance and efficiency increased.
  65.  
  66. 1.0    First release
  67.  
  68.