what is virtual memory?

India
October 21, 2009 6:23am CST
sometime in my computer some sign board poping up with a message, your virtual memory is low. So I am confused about what is virtual memory. Is it relate to my computer or is it relate to internet problem? And another message I found when I open any website specially yahoo or google i.e. the script memory saw that there is low memory. So my question is : do i increase my RAM limit or ignore it? Please let me know ......
3 responses
@dekada80 (388)
• Philippines
21 Oct 09
Virtual memory in it's simplest explanation is an extension of your physical memory to your harddisk, virtual memory uses disk space. In your case try changing the setting of paging file into "let system manage size" option under virtual memory setting to be safe and make sure you still have enough disk space on your harddrive.
1 person likes this
• India
21 Oct 09
where can i found this option "let system manage size" option
1 person likes this
@rebelann (111249)
• El Paso, Texas
7 Feb 20
How interesting, really good to know.
@SinfulRose (3527)
• Davao, Philippines
22 Oct 09
To say it simply... You have a certain amount of RAM memory in your computer. Now once you exceed that amount of memory, your system would automatically go to your hard disk to create a memory space for your program/s to run. It is because your programs or files occupy a certain amount of memory. The allocated memory in your hard disk is called virtual memory. Now, don't worry. Since it's virtual the allocated space is only temporary. So be sure clear up your hard disk every now and then. I hope this is much understandable.^^
• India
21 Oct 09
Virtual Memory is simply the operating system using some amount of disk space as if it were real memory. Exactly how virtual memory is implemented is complex and well beyond what I'd want to present here. But in an over-simplified nutshell it works like this: You run programs that need memory. The operating system takes care of tracking which program is using what portions of memory, and allocating each program the amount of memory it needs. Those programs will need more memory as they do their jobs. Opening a large document may cause your word processor to request additional memory from the operating system in order to hold the document. If there isn't enough memory available to satisfy a request, the operating system may decide that another program's needs are less "important". Some of that program's memory will be freed, first by writing the contents to disk (the memory is "swapped out"), and then allocated to the program making the request. Later when the program whose memory was swapped out needs it back, that memory can be "swapped in" by reading it back from disk. This might cause memory from another program to be swapped out to make room.