📅  最后修改于: 2023-12-03 14:44:01.024000             🧑  作者: Mango
When working with Ubuntu or any Linux distribution, it's important to have a way to list and identify connected USB devices. In this guide, we'll explore how to use the command line to list USB devices connected to Ubuntu.
Before proceeding with the guide, ensure that you have the following:
Here are the steps involved in listing USB devices using Shell/Bash on Ubuntu:
Ctrl + Alt + T
keyboard shortcut.lsusb
This command lists all the USB devices connected to your Ubuntu machine.
lsusb | grep "ManufacturerName"
-v
option along with lsusb. For example:lsusb -v | less
This command lists all the USB devices connected to your Ubuntu machine along with detailed information in a pager called 'less'.
This guide went over the steps involved in listing USB devices on Ubuntu using the command line interface. The lsusb command is a useful tool when working with Ubuntu or any other Linux distribution. With this knowledge, you can easily list and identify USB devices connected to your Ubuntu machine.