Friday, April 19, 2024
 Popular · Latest · Hot · Upcoming
15
rated 0 times [  15] [ 0]  / answers: 1 / hits: 4785  / 2 Years ago, sun, september 18, 2022, 7:59:51

On the ubuntu system monitor there are different types of memory listed: Virtual Memory, Resident Memory, Writeable Memory, Shared Memory & X Server Memory. What are the differences between them, and which reflects the actual RAM usage of the process?



Sorry if it's a newbie question :)


More From » memory

 Answers
2

  • Virtual memory accounts for all the libraries and executable objects that are mapped into your process, as well as your stack space.


  • Resident memory is the amount of memory that is actually in RAM.


  • Writable memory is the amount of address space that your process has allocated with write privileges.


  • Shared memory is memory that may be simultaneously accessed by multiple programs with an intent to provide communication among them or avoid redundant copies.


  • X server memory is the amount used by the X server for the GUI-session.




References:




[#39891] Monday, September 19, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
steaocyte

Total Points: 345
Total Questions: 122
Total Answers: 121

Location: Spain
Member since Wed, Nov 23, 2022
1 Year ago
;