what is stored in /proc ?
what is significance of /proc in linux ?
Answers were Sorted based on User's Feedback
Answer / hillol nayak
Mainly hardware related information such as CPU
information, Memory (RAM) information stored under /proc
directory
example:
# cat /proc/cpuinfo (show the information of CPU of that
particular hardware)
# cat /proc/meminfo (show the information of Memory i.e.
RAM of that particular hardware)
| Is This Answer Correct ? | 21 Yes | 3 No |
Answer / sahil makkar
Information related to process is stored in /proc
filesystem. One can say that full PCB(Process Control
Block) is there in /proc. proc is file system for RAM. Proc
filesystem is created while booting and as we run more
processes more entries are added to /proc directory for the
respective process.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / sandeep b
Proc is a psuedo file system so nothing is actually stored.
A read results in a call to function inside the kernel which
provides the information we see.
It makes information about the kernel and hardware available
to the user.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is atomic function / atomic variable ?
what is the difference between user APIs and kernel system calls ?
1. Where the History file can be located? 2. How will you harden the server? 3. Diff between Raid 1 and Raid 5? 4. What is the largest disk size can be used in LVM? 5. How will you remove a PV from lvm without any data loss? 6. What is the diff between ext3 and ext2 File system? 7. How we can use resize2fs, what is the purpose? 8. What is the purpose of LVM? Why it is used? 9. If the FS is in read-only mode, so we cannot create any file. How will you fix it? 10. How to create swap partition after OS installation? 11. What is the diff between ssh and telnet? 12. How to find out the dependency required for a package?
I would like to know whether Simado and Setu products are they EPBX or not ?
How to create secured appeche web sever ?
what are different ways the context switch happens from user to kernel space or vice-versa ?
Explain process management system calls in linux?
what is iptabe on redhat linux?
What will happen when we invoke a system call and say with an example of invoking a system call ?read? for a device?
Port number is already in use .. how to fix for apache..?
what kind of information the linux driver modules (.ko ) files has ?
diff b/w spinlock, seamaphores and mutex and where to use it.