All files in /dev are special files... they represent devices of the computer. They were created with the mknod syscall. My question is: How can I know the minor and major numbers that were used to create this special file?
thanks! Manuel
|
All files in /dev are special files... they represent devices of the computer. They were created with the mknod syscall. My question is: How can I know the minor and major numbers that were used to create this special file? thanks! Manuel
| |||
|
feedback
|
|
The list is called the LANANA Linux Device List, and it is administered by Alan Cox. You can find the latest copy online (direct link), or in the Linux source. Its filename in the kernel tree is EDIT: Oh, now I see what you're asking. To see the major and minor numbers that created a node in
In this example,
| |||||||||||
feedback
|
$ ls -l /dev/fd0 /dev/null brw-rw---- 1 root floppy 2, 0 Nov 22 19:48 /dev/fd0 crw-rw-rw- 1 root root 1, 3 Nov 22 19:48 /dev/null $ stat -c '%n: %F, major %t minor %T' /dev/fd0 /dev/null /dev/fd0: block special file, major 2 minor 0 /dev/null: character special file, major 1 minor 3 Most device numbers are fixed (i.e. $ cat /proc/devices Character devices: ... 10 misc ... Block devices: ... 253 mdp 254 device-mapper $ cat /proc/misc ... 57 device-mapper ... For example, on this system, it just so happens that You can explore these device registrations further in $ readlink /sys/dev/block/2:0 ../../devices/platform/floppy.0/block/fd0 $ cat /sys/devices/platform/floppy.0/block/fd0/dev 2:0 $ readlink /sys/dev/char/1:3 ../../devices/virtual/mem/null $ cat /sys/devices/virtual/mem/null/dev 1:3 | |||
|
feedback
|