如何在Linux中找到USB设备的设备节点文件?


3

我买了一台X10家庭自动化USB接口:CM15。

这是lsusb给出的信息:

skerit@KIP-DU-SKER:~$ lsusb
Bus 008 Device 002: ID 0bc7:0001 X10 Wireless Technology, Inc. ActiveHome (ACPI-compliant)

但这没有告诉我设备文件的位置!我怎样才能找到它,或者自己创建一个?

Answers:


4

设备节点由内核自动创建(或者由旧版本中的udev创建)。Udev还创建了/dev/disk/by-*/类似的描述性链接。

如果它是存储设备,lsblk -f或者sudo blkid应该列出它。

串行设备通常是或。ttyUSBnumttyACMnum

对于其他所有内容,请检查系统登录dmesg

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.