(不是重复的了解 /dev 及其子目录和文件)
我正在浏览我的文件系统,第一次我花了一秒钟来分析我的/dev
目录。我对其中的设备文件数量感到惊讶,并且无法理解所有这些文件:
max@linux-vwzy:/dev> ls
adsp disk fd0u1760 initctl mem root sg0 tty tty21 tty35 tty49 tty62 vboxdrv vcsa2
audio dri fd0u1840 input mixer rtc sg1 tty0 tty22 tty36 tty5 tty63 vboxnetctl vcsa3
autofs dsp fd0u1920 kmem mixer1 rtc0 sg2 tty1 tty23 tty37 tty50 tty7 vboxusb vcsa4
block dvd fd0u360 kmsg net scd0 sg3 tty10 tty24 tty38 tty51 tty8 vcs vcsa5
bootsplash dvdrw fd0u720 log network_latency sda sg4 tty11 tty25 tty39 tty52 tty9 vcs1 vcsa6
bsg fb0 fd0u800 loop0 network_throughput sda1 sg5 tty12 tty26 tty4 tty53 ttyS0 vcs10 vcsa7
btrfs-control fd fd0u820 loop1 null sda2 sg6 tty13 tty27 tty40 tty54 ttyS1 vcs2 vga_arbiter
bus fd0 fd0u830 loop2 nvram sda3 sg7 tty14 tty28 tty41 tty55 ttyS2 vcs3 xconsole
cdrom fd0u1040 full loop3 oldmem sdb shm tty15 tty29 tty42 tty56 ttyS3 vcs4 zero
cdrw fd0u1120 fuse loop4 port sdc snapshot tty16 tty3 tty43 tty57 ttyS4 vcs5
char fd0u1440 fw0 loop5 ppp sdc1 snd tty17 tty30 tty44 tty58 ttyS5 vcs6
console fd0u1600 hidraw0 loop6 psaux sdd sr0 tty18 tty31 tty45 tty59 ttyS6 vcs7
core fd0u1680 hidraw1 loop7 ptmx sde stderr tty19 tty32 tty46 tty6 ttyS7 vcsa
cpu fd0u1722 hidraw2 mapper pts sdf stdin tty2 tty33 tty47 tty60 uinput vcsa1
cpu_dma_latency fd0u1743 hpet mcelog random sdg stdout tty20 tty34 tty48 tty61 urandom vcsa10
我知道sd*
是我的磁盘和文件系统,但是loopx
、fd0uxxxx
、sgx
和vcsxxx
所有其他单个文件是什么。其中大多数是根据ls
.
我知道完全回答这个问题需要大量信息,因此除非有人可以提供包含不同设备文件dev
及其用途的详细概述的链接,否则我建议我们做出 CW 答案。
答案1
其中一些有手册页(在第4节;省略最后的数字,在少数情况下,例如sda
最后的字母)。
要获得更明确但通常不太容易阅读的答案,请查看内核文档。首先判断设备是否为块设备或字符设备,及其主要编号和次要编号。例如
$ ls -l /dev/sda
brw-rw---- 1 root disk 8, 0 Jul 12 15:54 /dev/sda
sda
块设备 ( )也是如此b
,major:minor = 8:0。现在查找它devices.txt
:8块是SCSI磁盘设备,这是现在大多数磁盘(大多数IDE和SATA磁盘也可以通过SCSI接口看到,尽管这取决于内核编译选项)。块设备 8:1 ( /dev/sda1
) 是 的第一个分区/dev/sda
。
可能有一些奇怪的设备没有记录。您可以查看您的系统,例如/sys/dev/block/8:0
:这是一个指向目录的符号链接,/sys
该目录提供了有关设备的各种信息。您可以点击更多链接,特别是(在本例中)/sys/dev/block/8:0/device/driver
将您带到与驱动程序对应的目录。另一个信息源是/proc/devices
,它指示驱动程序声明每个主设备号。
大多数Linux系统使用乌德夫/dev
根据可用的驱动程序和硬件进行填充。您可以浏览规则来创建设备文件,通常位于/lib/udev/rules.d
和/etc/udev/rules.d
(确切位置取决于发行版)。
其中一些文件不是设备。lsof /dev/NAME
(作为 root)会告诉您哪些进程正在使用它们,从而提示您它们的用途。对于目录,请查看其中的文件。
这个答案是特定于Linux的,但其他unis也遵循相同的原则。检查手册页(大多数变体在第 4 节中,但少数使用第 7 节),或其他系统或内核文档。相关信息是块/字符位和主要:次要数字。