home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / drivers / os212fsd / readme.doc < prev    next >
Text File  |  1991-02-28  |  2KB  |  51 lines

  1. Software requirements:
  2.  
  3.     OS2 1.2  after internal release 12.134 for minimal functionality.
  4.     OS2 1.21 after internal release 121.185 for CDROM required kernel
  5.              fixes.  This will give the most bug-free operation.
  6.  
  7. Config.sys Parameters :    May be any of the following.
  8.  
  9.     /k      Instructs the FSD to first search for a secondary volume
  10.     /K      descriptor.  If not found, the volume descriptors are
  11.             then searched for a primary volume descriptor.  This is
  12.             used to read Kanji disks.
  13.  
  14.     /c:<#>  Tells the FSD how many 64K segments to use for the sector
  15.     /C:<#>  cache.  The default is 2, meaning 64 sectors are cached.
  16.             This value must be between 1 and 65535.  The actual number 
  17.             of cached sectors is this value times 32.
  18.  
  19.     /m:<#>  Tells the FSD the maximum number of disk sectors to read at
  20.     /M:<#>  a time.  The default is 8 (16K).  The maximum is 31 sectors
  21.             or 25% of the total sector cache, whichever is smaller.
  22.  
  23.     /quiet  Suppresses any signon messages.
  24.            
  25.     The /c parameter must appear before the /m parameter or the /m
  26.     parameter will be ignored and the default value used.
  27.  
  28.     Example :   The following instructs the FSD to search for a secondary
  29.                 volume descriptor, cache 128 sectors and read a maximum
  30.                 of 20 sectors at a time.  In this case the FSD is 
  31.                 put in a directory named c:\ifs.
  32.  
  33.         ifs=c:\ifs\cdfs.ifs /k /c:4 /m:20
  34.  
  35.                 The following can be used to read the primary volume 
  36.                 descriptor use the default cache and read-ahead values.
  37.  
  38.         ifs=c:\ifs\cdfs.ifs
  39.  
  40. The CDROM FSD swaps out the sector buffers into the swapfile on the 
  41. harddisk.  The value for the /C parameter is constrained by the swapfile
  42. not the physical memory of the machine.
  43.  
  44.  
  45. Put the dll, UCDFS.DLL in a directory on your libpath.
  46.  
  47.     This dll provides compatibility for the utility functions SYS,
  48.     FORMAT, CHKDSK, and RECOVER.  These are basically no-ops for CDROM
  49.     except CHKDSK which returns the size of the CDROM volume.
  50.  
  51.