Linux

查找 USB 設備路徑

  • June 6, 2014

最近在網上看到這個命令:

ls -l /dev/disk/by-label/

它有效,但我擔心,它是否適用於其他 Linux 發行版?如何在未自動掛載 USB 的電腦上找到 USB 設備?

在其中一個 Ubuntu 8.10 系統中,如果我的設備沒有自動掛載,我會使用以下方法。

執行fdisk -l命令。從手冊頁fdisk

-l     List the partition tables for the  specified  devices  and  then
             exit.   If no devices are given, those mentioned in /proc/parti-
             tions (if that exists) are used.

現在,即使我的 USB 沒有掛載,上面的命令也會列出 USB 驅動器。現在,您可以在某處/media或您喜歡的任何地方創建一個掛載點,然後手動將 USB 驅動器掛載為,

mount /dev/sda1 /media/usb-drive

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