如何从 lsusb 输出或通过设备路径获取设备文件名

如何从 lsusb 输出或通过设备路径获取设备文件名

相关问题:USB 连接/断开通知

当设备插入/拔出时,我会收到即时通知,这很棒。但为了使其(几乎)完美,我还想获取设备文件名,例如/dev/ttyUSB0,甚至更好的是它的所有符号链接。

但是,我找不到如何从udev、 或 从lsusb或其他方式获取此信息。我拥有的设备的唯一 ID 是设备路径,例如/devices/pci0000:00/0000:00:1d.0/usb5/5-1.如何从中获取设备文件名?

答案1

假设我正在尝试为我的 UVC 相机找到设备,lsusb 会给我:

Bus 001 Device 004: ID 1e4e:0102 Cubeternet GL-UPC822 UVC WebCam

然后是设备文件名/dev/bus/usb/001/004(第一个组件是总线 ID,接下来是设备 ID)。

答案2

我刚刚为此构建了一个脚本,它并不漂亮,但对我有用。

我使用以下配置在 Arch Linux 上测试了此脚本:

$ uname -a
Linux 4.4.13-1-lts #1 SMP Wed Jun 8 16:44:31 CEST 2016 x86_64 GNU/Linux

我的设备名称/dev/sdb与您的完全不同,我希望它也适合您。

另请注意,该脚本依赖于程序usbutilsusb-devices,我相信它默认安装在所有 Linux 上,但我可能是错的。

脚本usbname

#!/usr/bin/bash

# Input should be a single line from lsusb output:
DATA=$1

# Read the bus number:
BUS=`echo $DATA | grep -Po 'Bus 0*\K[1-9]+'`

# Read the device number:
DEV=`echo $DATA | grep -Po 'Device 0*\K[1-9]+'`

FOUND=false
USB_Serial=""

# Search for the serial number of the PenDrive:
while read line
do
  if [ $FOUND == true ]; then
    USB_Serial=`echo "$line" | grep -Po 'SerialNumber=\K.*'`
    if [ "$USB_Serial" != "" ]; then
      break;
    fi
  fi

  if [ "`echo "$line" | grep -e "Bus=0*$BUS.*Dev#= *$DEV"`" != "" ]; then
    FOUND=true
  fi
done <<< "$(usb-devices)"

# Get the base name of the block device, e.g.: "sdx"
BASENAME=`file /dev/disk/by-id/* | grep -v 'part' | grep -Po "$USB_Serial.*/\K[^/]+$"`

# Build the full address, e.g.: "/dev/sdx"
NAME="/dev/$BASENAME"

# Output the address:
echo $NAME

用法:

$ ./usbname "$(lsusb | grep '<my_usb_label_or_id>')"
/dev/sdb

答案3

我使用这个小 bash 函数

getdevice() {
    idV=${1%:*}
    idP=${1#*:}
    for path in `find /sys/ -name idVendor | rev | cut -d/ -f 2- | rev`; do
        if grep -q $idV $path/idVendor; then
            if grep -q $idP $path/idProduct; then
                find $path -name 'device' | rev | cut -d / -f 2 | rev
            fi
        fi
    done
}

例子

# lsusb
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 005: ID 8087:0a2b Intel Corp.
Bus 001 Device 012: ID 0bda:2832 Realtek Semiconductor Corp. RTL2832U DVB-T
Bus 001 Device 053: ID 051d:0002 American Power Conversion Uninterruptible Power Supply
Bus 001 Device 051: ID 1cf1:0030 Dresden Elektronik
Bus 001 Device 006: ID 1a86:7523 QinHeng Electronics HL-340 USB-Serial adapter
Bus 001 Device 004: ID 05e3:0606 Genesys Logic, Inc. USB 2.0 Hub / D-Link DUB-H4 USB 2.0 Hub
Bus 001 Device 003: ID 0658:0200 Sigma Designs, Inc. Aeotec Z-Stick Gen5 (ZW090) - UZB
Bus 001 Device 002: ID 0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth Dongle (HCI mode)
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

以及相应的设备

# getdevice 051d:0002
hiddev0
hidraw0

# getdevice 1a86:7523
ttyUSB0

# getdevice 0658:0200
ttyACM1

相关内容