查找 USB 设备路径

查找 USB 设备路径

最近我在网上看到这样的命令:

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

它有效,但我担心它在其他 Linux 发行版上也有效吗?如何在没有自动挂载USB的电脑上找到USB设备?

答案1

在 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

答案2

您可以在插入 USB 设备后使用 dmesg 来了解内核如何处理该设备以及在哪里可以找到它。

相关内容