Linux

有沒有辦法找出驅動器通過 linux 插入的物理埠?

  • January 30, 2019

在不知道插入哪些驅動器的順序以及插入哪些埠(通過人眼)的情況下,有沒有辦法使用 linux 命令來判斷它們被插入的位置?我需要這個才能創建一個顯示埠位置和狀態等的網頁設計。

是的你可以。lsusb將為您提供BusDevice級別的詳細資訊,並且fdisk -l可以查看哪些“USB 驅動器”映射到哪些設備。您還可以查看dmesg輸出以查看插入“USB”的埠。您可能需要不斷檢查輸出。

例如:

>> lsusb
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 005: ID 04f2:b2db Chicony Electronics Co., Ltd 
Bus 001 Device 004: ID 0a5c:21e6 Broadcom Corp. BCM20702 Bluetooth 4.0 [ThinkPad]
Bus 001 Device 003: ID 147e:2020 Upek TouchChip Fingerprint Coprocessor (WBF advanced mode)
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 002: ID 1058:07a8 Western Digital Technologies, Inc. My Passport (WDBBEP), My Passport for Mac (WDBLUZ)
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

我的外部驅動器已插入我的USB3.0埠。

Device         Start       End   Sectors   Size Type
/dev/sda1       2048    411647    409600   200M BIOS boot
/dev/sda2     411648 126240767 125829120    60G Linux root (x86-64)
/dev/sda3  126240768 143017983  16777216     8G Linux swap
/dev/sda4  143017984 976773127 833755144 397.6G Linux root (x86-64)

Disk /dev/sdb: 931.5 GiB, 1000170586112 bytes, 1953458176 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x00023f15

Device     Boot Start        End    Sectors   Size Id Type
/dev/sdb1        2048 1953458175 1953456128 931.5G  7 HPFS/NTFS/exFAT

在上面,我的外部驅動器是/dev/sdb1.

引用自:https://unix.stackexchange.com/questions/497607