About 3,440,000 results
Open links in new tab
  1. What are the differences between virtual memory and physical …

    Considering RAM as the physical memory, why do we need the virtual memory for executing a process? Where does this virtual memory stand when the process (program) from the external …

  2. windows - Physical Memory Vs Virtual Memory - Stack Overflow

    Oct 8, 2013 · The virtual memory is a view of the real memory (plus maybe some disk space), so your question does not really make sense. Data are written at the place in physical memory a …

  3. What is the difference between linear, physical, logical and virtual ...

    Jul 20, 2020 · This segmented memory model was largely abolished in 64bit mode. Summary Logical Addresses -> Virtual Addresses -> Physikal Addresses Virtual addresses and physical …

  4. Diff. between Logical memory and Physical memory

    Nov 12, 2014 · Physical -- An actual device Logical -- A translation to a physical device Virtual -- A simulation of a physical device The term "logical memory" is rarely used because we normally …

  5. Are Arrays Contiguous in *Physical* Memory? - Stack Overflow

    Jul 2, 2021 · On Linux x86, contiguous virtual memory is allocated in pages of 4 KB: By definition, memory within a page is contiguous. But the physical pages can be mapped in any order. This …

  6. process - Virtual Memory and Physical Memory - Stack Overflow

    Jul 21, 2015 · It maps memory addresses used by a program, called virtual addresses, into physical addresses in computer memory. Main storage as seen by a process or task appears …

  7. What's the difference between "virtual memory" and "swap space"?

    Feb 11, 2011 · Can any one please make me clear what is the difference between virtual memory and swap space? And why do we say that for a 32-bit machine the maximum virtual memory …

  8. What is private bytes, virtual bytes, working set?

    What is the total memory consumed by the process? Is it the Virtual Bytes or is it the sum of Virtual Bytes and Working Set? Is there any relation between Private Bytes, Working Set and …

  9. How to retrieve available RAM from Windows command line?

    Feb 1, 2012 · Your actual question "How to retrieve available RAM from Windows command line" has already been answered. You should be more clear, if your question was intended to be …

  10. How do you read directly from physical memory on Windows?

    In C or C++ (windows), how do you read RAM by giving a physical (not virtual) address? That means without going trough virtual memory system (mmu tables), and being specific to one …