memory.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. There are several classic problems related to memory on Linux
  2. systems.
  3. 1) There are some buggy motherboards which cannot properly 
  4.    deal with the memory above 16MB.  Consider exchanging
  5.    your motherboard.
  6. 2) You cannot do DMA on the ISA bus to addresses above
  7.    16M.  Most device drivers under Linux allow the use
  8.            of bounce buffers which work around this problem.  Drivers
  9.    that don't use bounce buffers will be unstable with
  10.    more than 16M installed.  Drivers that use bounce buffers
  11.    will be OK, but may have slightly higher overhead.
  12. 3) There are some motherboards that will not cache above
  13.    a certain quantity of memory.  If you have one of these
  14.    motherboards, your system will be SLOWER, not faster
  15.    as you add more memory.  Consider exchanging your 
  16.            motherboard.
  17. All of these problems can be addressed with the "mem=XXXM" boot option
  18. (where XXX is the size of RAM to use in megabytes).  
  19. It can also tell Linux to use less memory than is actually installed.
  20. See the documentation of your boot loader (LILO, loadlin, etc.) about
  21. how to pass options to the kernel.
  22. There are other memory problems which Linux cannot deal with.  Random
  23. corruption of memory is usually a sign of serious hardware trouble.
  24. Try:
  25. * Reducing memory settings in the BIOS to the most conservative 
  26.           timings.
  27. * Adding a cooling fan.
  28. * Not overclocking your CPU.
  29. * Having the memory tested in a memory tester or exchanged
  30.   with the vendor. Consider testing it with memtest86 yourself.
  31. * Exchanging your CPU, cache, or motherboard for one that works.
  32. * Disabling the cache from the BIOS.
  33. * Try passing the "mem=4M" option to the kernel to limit
  34.   Linux to using a very small amount of memory.
  35. Other tricks:
  36. * Try passing the "no-387" option to the kernel to ignore
  37.   a buggy FPU.
  38. * Try passing the "no-hlt" option to disable the potentially
  39.           buggy HLT instruction in your CPU.