Linux虚拟内存和物理内存精华【美】

 

转载自:http://blog.csdn.net/21aspnet/article/details/7454031

原文地址:

《Playing with Virtual Memory》

http://www.snailinaturtleneck.com/blog/2011/08/30/playing-with-virtual-memory/

扩展阅读:

《Understanding Memory》

http://www.ualberta.ca/CNS/RESEARCH/LinuxClusters/mem.html

         To create an executable file, the system linker aggregates the instructions and the data into distinct segments. All of the instructions go into one segment traditionally called text. Unfortunately, that name conveys the impression that the segment contains source code, which it does not. Meanwhile, the data are arranged in two segments. One is called data, for the initialized static data and literal constants, and the other, bss, for the uninitialized static data. Bss once stood for "block started from symbol," which was a mainframe assembly language instruction, but the term carries no meaning today.

《Understanding Virtual Memory》

http://www.redhat.com/magazine/001nov04/features/vm/

《MongoDB与内存》

http://huoding.com/2011/08/19/107

你可能感兴趣的:(linux,物理内存,虚拟内存)