Srikanth Lankapalli
Srikanth Lankapalli

Reputation: 136

Location of proc filesystem

Is the proc file system held in memory ( Physical Memory ). Since Kernel constantly updates the proc , I am guessing that the content of the proc have to be in physical memory(RSS) for efficiency. Can you any one shed some light on it.

Upvotes: 0

Views: 2515

Answers (1)

Taher A. Ghaleb
Taher A. Ghaleb

Reputation: 5240

The Linux /proc File System is a virtual filesystem that exists in RAM (i.e., it is not stored on the hard drive). That means that it exists only when the computer is turned on and running.

Here are some resources where you can find more details about this:

The /proc filesystem

Exploring /proc File System in Linux

Discover the possibilities of the /proc directory

Hope that helps.

Upvotes: 1

Related Questions