When we register a driver, the "name" parameter shows up in /proc/devices
, yet we can write to the devices using the entry in /dev corresponding to the device. What are the core ideas behind /proc and /dev entries? Moving further, is sysfs supposed to be a replacement for procfs? How does it differ from procfs?
Asked
Active
Viewed 3,085 times
3

Thomas Dickey
- 76,765

Lavya
- 1,605
-
1procfs vs sysfs – neuron Jul 17 '15 at 09:28
1 Answers
7
/proc/devices
- List of device drivers configured into the currently running kernel (block and character)
/dev
- This directory contains the special device files for all the devices
Difference between procfs vs sysfs