Linuxを介してドライブが接続されている物理ポートを見つける方法はありますか?

Linuxを介してドライブが接続されている物理ポートを見つける方法はありますか?

ドライブが接続されている順序とどのポートに人の目で不明な状態でLinuxコマンドを使用してドライブが接続されているかを知る方法はありますか?ポートやステータスなどを表示するWebデザインを作成するには、この機能が必要です。

ベストアンサー1

そうそうできます。レベルの詳細がlsusb表示され、どの「USBドライブ」がどのデバイスにマップされているかを確認できます。出力を見て、どのポート「USB」が接続されているかを確認することもできます。出力を確認し続ける必要があります。BusDevicefdisk -ldmesg

たとえば、

>> 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

おすすめ記事