home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 2 / CD ACTUAL VOL 2.iso / docs / kernel.13 / readme.ram < prev    next >
Encoding:
Text File  |  1995-09-10  |  1.2 KB  |  35 lines

  1. New RAMDISK driver README
  2. -------------------------
  3.  
  4.     This improved version of the ramdisk driver contains two major 
  5. enhancements to the older ramdisk driver :
  6.  
  7.     1.  It supports gzipped ramdisk images.  This, for example, makes 
  8. the standard 1.44MB rootdisk shipped with Slackware 2.2 take up only 544K 
  9. of disk space.  This feature can be used easily by gziping a standard 
  10. rootdisk (or creating a larger one in a ramdisk), and copying it down to 
  11. the floppy.
  12.  
  13.     This can be extremely useful for certain rare situations (like if 
  14. you only have a 720K disk to put a rootdisk on - using this ramdisk 
  15. driver, you can put a full rootdisk on it...)
  16.  
  17. (TODO:  Make the gzip loader read at 384K and 512K into the disk, so a 
  18. kernel and a rootdisk can both be used.)
  19.  
  20.     2.  It also supports multiple ramdisk devices (referencing 
  21. straight to the buffer cache).  A buffer protection scheme has been added 
  22. to the buffer.c system, which should keep the buffers safe.
  23.  
  24.     You can create the devices by doing :
  25.  
  26.     mknod /dev/ramX b 33 X
  27.  
  28.     (X is the minor number - it can be up to 255.  Note that minor #0 
  29. can be the static ramdisk as well, so I suggest that it not be mknoded.)
  30.     
  31.     Enjoy!
  32.  
  33.     - Chad Page
  34.      (cpage@best.com)
  35.