Unveiling RAM Mysteries: A Practical Guide to Reading Memory

priyanshu jha
2 min readDec 31, 2023

--

INTRODUCTION

RAM, or Random Access Memory, is a type of volatile computer memory that provides quick access to data and instructions for the processor. It is used to temporarily store and swiftly retrieve data that is actively being processed by the CPU. Unlike long-term storage devices, RAM loses its content when the power is turned off. RAM is essential for the smooth functioning of a computer, playing a key role in running applications, executing tasks, and managing system performance. The amount of RAM in a system significantly impacts its multitasking capabilities and overall responsiveness.

Step 01:

Open your Terminal in which you want to mput the code and then put the code as

free -h

Step 02:

Now we can Enter a new code as

Ps

After add these two codes we will get a rough idea of how much memory is used which memory has taken the space or not.

Step 03:

now the main step comes in which we will get all the idea about the RAM.

top

This list shows us what task has taken how much memory in human readable language.this list is written characters,numerics and all.

--

--