![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Virtual Memory | Kurohana | HP-UX | 3 | 11-09-2007 02:54 PM |
| cpu, memory and virtual memory usage | ocelot | UNIX for Dummies Questions & Answers | 3 | 09-20-2006 07:32 AM |
| about virtual memory and memory leak | shriashishpatil | High Level Programming | 4 | 02-20-2006 08:31 AM |
| get physical and virtual memory | tads98 | Shell Programming and Scripting | 7 | 08-05-2005 12:00 AM |
| Memory/virtual space | degwright | Shell Programming and Scripting | 5 | 11-23-2001 06:44 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
virtual memory
Hi,
can anyone explain me what virtual memory is ( for which we use vmstat commande line ) comparing with RAM ? many thanks before. |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Virtual memory: The use of a disk partition or a file on disk to provide the same facilities usually provided by RAM. A way of using disk storage space to make the computer work as if it had more memory. When a file or program is too big for the computer to work with in its memory, part of the data is stored on disk. This virtual storage is divided into segments called pages; each page is correlated with a location in physical memory, or RAM. When an address is referenced, the page is swapped into memory; it is sent back to disk when other pages must be called. The program runs as if all the data is in memory.
RAM: Random Access Memory. The working memory of the computer. RAM is the memory used for storing data temporarily while working on it, running application programs, etc. "Random access" refers to the fact that any area of RAM can be accessed directly and immediately, in contrast to other media such as a magnetic tape where the tape must be wound to the point where the data is. RAM is called volatile memory; information in RAM will disappear if the power is switched off before it is saved to disk. |
|
#3
|
|||
|
|||
|
Many thanks.
|
|||
| Google The UNIX and Linux Forums |