ramdisk.txt
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. Using the RAM disk block device with Linux
  2. ------------------------------------------
  3. Contents:
  4. 1) Overview
  5. 2) Kernel Command Line Parameters
  6. 3) Using "rdev -r" With New Kernels
  7. 4) An Example of Creating a Compressed RAM Disk 
  8. 1) Overview
  9. -----------
  10. As of kernel v1.3.48, the RAM disk driver was substantially changed.
  11. The older versions would grab a chunk of memory off the top before
  12. handing the remainder to the kernel at boot time. Thus a size parameter
  13. had to be specified via "ramdisk=1440" or "rdev -r /dev/fd0 1440" so
  14. that the driver knew how much memory to grab.
  15. Now the RAM disk dynamically grows as more space is required. It does
  16. this by using RAM from the buffer cache. The driver marks the buffers
  17. it is using with a new "BH_Protected" flag so that the kernel does 
  18. not try to reuse them later. This means that the old size parameter
  19. is no longer used, new command line parameters exist, and the behavior
  20. of the "rdev -r" or "ramsize" (usually a symbolic link to "rdev")
  21. command has changed.
  22. Also, the new RAM disk supports up to 16 RAM disks out of the box, and can
  23. be reconfigured in rd.c to support up to 255 RAM disks.  To use multiple
  24. RAM disk support with your system, run 'mknod /dev/ramX b 1 X' and chmod
  25. (to change its permissions) it to your liking.  The default /dev/ram(disk)
  26. uses minor #1, so start with ram2 and go from there.
  27. The old "ramdisk=<ram_size>" has been changed to "ramdisk_size=<ram_size>"
  28. to make it clearer.  The original "ramdisk=<ram_size>" has been kept around
  29. for compatibility reasons, but it will probably be removed in 2.1.x.
  30. The new RAM disk also has the ability to load compressed RAM disk images,
  31. allowing one to squeeze more programs onto an average installation or 
  32. rescue floppy disk.
  33. Notes: You may have "/dev/ram" or "/dev/ramdisk" or both. They are
  34. equivalent from the standpoint of this document. Also, the new RAM disk
  35. is a config option. When running "make config", make sure you enable
  36. RAM disk support for the kernel with which you intend to use the RAM disk.
  37. 2) Kernel Command Line Parameters
  38. ---------------------------------
  39. ramdisk_start=NNN
  40. =================
  41. To allow a kernel image to reside on a floppy disk along with a compressed
  42. RAM disk image, the "ramdisk_start=<offset>" command was added. The kernel
  43. can't be included into the compressed RAM disk filesystem image, because
  44. it needs to be stored starting at block zero so that the BIOS can load the 
  45. boot sector and then the kernel can bootstrap itself to get going.
  46. Note: If you are using an uncompressed RAM disk image, then the kernel can
  47. be a part of the filesystem image that is being loaded into the RAM disk,
  48. and the floppy can be booted with LILO, or the two can be separate as
  49. is done for the compressed images.
  50. If you are using a two-disk boot/root setup (kernel on #1, RAM disk image
  51. on #2) then the RAM disk would start at block zero, and an offset of
  52. zero would be used. Since this is the default value, you would not need
  53. to actually use the command at all.
  54. If instead, you have a "zImage" of about 350 kB, and a "fs_image.gz" of
  55. say about 1 MB, and you want them both on the same disk, then you
  56. would use an offset. If you stored the "fs_image.gz" onto the floppy
  57. starting at an offset of 400 kB, you would use "ramdisk_start=400".
  58. load_ramdisk=N
  59. ==============
  60. This parameter tells the kernel whether it is to try to load a
  61. RAM disk image or not. Specifying "load_ramdisk=1" will tell the
  62. kernel to load a floppy into the RAM disk. The default value is
  63. zero, meaning that the kernel should not try to load a RAM disk.
  64. prompt_ramdisk=N
  65. ================
  66. This parameter tells the kernel whether or not to give you a prompt
  67. asking you to insert the floppy containing the RAM disk image. In
  68. a single floppy configuration the RAM disk image is on the same floppy
  69. as the kernel that just finished loading/booting and so a prompt
  70. is not needed. In this case one can use "prompt_ramdisk=0". In a
  71. two floppy configuration, you will need the chance to switch disks,
  72. and thus "prompt_ramdisk=1" can be used. Since this is the default 
  73. value, it doesn't really need to be specified.
  74. ramdisk_size=N
  75. ==============
  76. This parameter tells the RAM disk driver to set up RAM disks of N k size.  The
  77. default is 4096 (4 MB). 
  78. 3) Using "rdev -r" With New Kernels
  79. -----------------------------------
  80. The usage of the word (two bytes) that "rdev -r" sets in the kernel image
  81. has changed. The low 11 bits (0 -> 10) specify an offset (in 1 k blocks) 
  82. of up to 2 MB (2^11) of where to find the RAM disk (this used to be the 
  83. size). Bit 14 indicates that a RAM disk is to be loaded, and bit 15
  84. indicates whether a prompt/wait sequence is to be given before trying
  85. to read the RAM disk. Since the RAM disk dynamically grows as data is
  86. being written into it, a size field is no longer required. Bits 11
  87. to 13 are not currently used and may as well be zero. These numbers
  88. are no magical secrets, as seen below:
  89. ./arch/i386/kernel/setup.c:#define RAMDISK_IMAGE_START_MASK     0x07FF
  90. ./arch/i386/kernel/setup.c:#define RAMDISK_PROMPT_FLAG          0x8000
  91. ./arch/i386/kernel/setup.c:#define RAMDISK_LOAD_FLAG            0x4000
  92. Consider a typical two floppy disk setup, where you will have the 
  93. kernel on disk one, and have already put a RAM disk image onto disk #2.
  94. Hence you want to set bits 0 to 13 as 0, meaning that your RAM disk
  95. starts at an offset of 0 kB from the beginning of the floppy.
  96. The command line equivalent is: "ramdisk_start=0"
  97. You want bit 14 as one, indicating that a RAM disk is to be loaded.
  98. The command line equivalent is: "load_ramdisk=1"
  99. You want bit 15 as one, indicating that you want a prompt/keypress
  100. sequence so that you have a chance to switch floppy disks.
  101. The command line equivalent is: "prompt_ramdisk=1"
  102. Putting that together gives 2^15 + 2^14 + 0 = 49152 for an rdev word.
  103. So to create disk one of the set, you would do:
  104. /usr/src/linux# cat arch/i386/boot/zImage > /dev/fd0
  105. /usr/src/linux# rdev /dev/fd0 /dev/fd0
  106. /usr/src/linux# rdev -r /dev/fd0 49152
  107. If you make a boot disk that has LILO, then for the above, you would use:
  108. append = "ramdisk_start=0 load_ramdisk=1 prompt_ramdisk=1"
  109. Since the default start = 0 and the default prompt = 1, you could use:
  110. append = "load_ramdisk=1"
  111. 4) An Example of Creating a Compressed RAM Disk 
  112. ----------------------------------------------
  113. To create a RAM disk image, you will need a spare block device to
  114. construct it on. This can be the RAM disk device itself, or an
  115. unused disk partition (such as an unmounted swap partition). For this 
  116. example, we will use the RAM disk device, "/dev/ram".
  117. Note: This technique should not be done on a machine with less than 8 MB
  118. of RAM. If using a spare disk partition instead of /dev/ram, then this
  119. restriction does not apply.
  120. a) Decide on the RAM disk size that you want. Say 2 MB for this example.
  121.    Create it by writing to the RAM disk device. (This step is not currently
  122.    required, but may be in the future.) It is wise to zero out the
  123.    area (esp. for disks) so that maximal compression is achieved for
  124.    the unused blocks of the image that you are about to create.
  125. dd if=/dev/zero of=/dev/ram bs=1k count=2048
  126. b) Make a filesystem on it. Say ext2fs for this example.
  127. mke2fs -vm0 /dev/ram 2048
  128. c) Mount it, copy the files you want to it (eg: /etc/* /dev/* ...)
  129.    and unmount it again.
  130. d) Compress the contents of the RAM disk. The level of compression
  131.    will be approximately 50% of the space used by the files. Unused
  132.    space on the RAM disk will compress to almost nothing.
  133. dd if=/dev/ram bs=1k count=2048 | gzip -v9 > /tmp/ram_image.gz
  134. e) Put the kernel onto the floppy
  135. dd if=zImage of=/dev/fd0 bs=1k
  136. f) Put the RAM disk image onto the floppy, after the kernel. Use an offset
  137.    that is slightly larger than the kernel, so that you can put another
  138.    (possibly larger) kernel onto the same floppy later without overlapping
  139.    the RAM disk image. An offset of 400 kB for kernels about 350 kB in
  140.    size would be reasonable. Make sure offset+size of ram_image.gz is
  141.    not larger than the total space on your floppy (usually 1440 kB).
  142. dd if=/tmp/ram_image.gz of=/dev/fd0 bs=1k seek=400
  143. g) Use "rdev" to set the boot device, RAM disk offset, prompt flag, etc.
  144.    For prompt_ramdisk=1, load_ramdisk=1, ramdisk_start=400, one would
  145.    have 2^15 + 2^14 + 400 = 49552.
  146. rdev /dev/fd0 /dev/fd0
  147. rdev -r /dev/fd0 49552
  148. That is it. You now have your boot/root compressed RAM disk floppy. Some
  149. users may wish to combine steps (d) and (f) by using a pipe.
  150. --------------------------------------------------------------------------
  151. Paul Gortmaker 12/95