lsusb command in Linux with Examples Last Updated : 11 Sep, 2024 Comments Improve Suggest changes Like Article Like Report The 'lsusb' command in Linux is a useful utility for displaying information about USB buses and the devices connected to them. It provides a detailed view of the USB hardware connected to your system, including details such as speed, bus number, device class, and type. This command is particularly valuable for troubleshooting USB devices and understanding the hardware configuration of your Linux system.Syntaxlsusb [ options ]Basic ExampleBy default, running the command without any options will list all USB devices connected to the system, showing basic information like the device ID and a brief description.Key Options for the 'lsusb' Command1. -v (Verbose Mode)This option is used to display the output in verbose mode and also display detailed information about the devices connected. lsusb -v2. -s (Select Specific Device)This option is used to display the only device specified by the bus and/or device number. Example:lsusb -s 2:43. -t (Display USB Hierarchy as a Tree)This option is used to dump the physical USB device hierarchy as a tree. Example:lsusb -t4. -D (Display Specific Device File Information) This option is used to display information about the specified device file. The device file should be like /dev/usb/002/004. Example:lsusb -D /dev/bus/usb/002/004ConclusionThe 'lsusb' command is a helpful tool in Linux for checking and fixing USB devices. It shows detailed information about USB buses and connected devices, helping users and system administrators understand their hardware setup. Learning how to use its different options can make it much easier to manage and solve problems with USB devices on Linux. Comment More infoAdvertise with us B basilmohamed Follow Improve Article Tags : Linux-Unix linux-command Linux-system-commands Similar Reads How to Kill a Process in Linux | Kill Command kill command in Linux (located in /bin/kill), is a built-in command which is used to terminate processes manually. kill command sends a signal to a process that terminates the process. If the user doesn't specify any signal that is to be sent along with the kill command, then a default TERM signal i 6 min read last command in Linux with Examples The 'last' command in Linux is a powerful utility used to display a list of all users who have logged in and out since the creation of the '/var/log/wtmp' file. It provides a chronological view of user sessions, allowing administrators to monitor user activity, troubleshoot issues, and manage system 5 min read less command in Linux with Examples The 'less' command in Linux is an indispensable utility for browsing the contents of text files interactively. Unlike traditional text editors, 'less' allows you to view text files page by page without loading the entire file into memory. This approach not only speeds up the file loading process, es 5 min read let command in Linux with Examples The `let` command in Linux is a powerful tool used for evaluating arithmetic expressions on shell variables. It supports various operators and functionalities to perform calculations and manipulate values. Syntax of `let` command in Linux The basic syntax of the `let` is as follows. let [expression] 3 min read ln command in Linux with Examples The 'ln' command in Linux is a powerful utility that allows you to create links between files. These links can either be hard links or soft (symbolic) links. If you're unfamiliar with these concepts, check out our detailed guide on Hard and Soft Links in Linux to understand their differences, use ca 3 min read locate command in Linux with Examples locate command in Linux is used to find the files by name. There are two most widely used file-searching utilities accessible to users called to find and locate. The locate utility works better and faster than the find command counterpart because instead of searching the file system when a file sear 6 min read look command in Linux with Examples The look command in Linux is used to display lines that begin with a specified string. It is especially useful for searching through large files or lists, as it helps you locate entries efficiently. By default, the look command performs case-insensitive matches and searches for exact prefixes. The l 3 min read How to List All Block Devices in Linux | lsblk Command Understanding the storage devices connected to your Linux system is crucial for efficient system management. The 'lsblk' command, short for "list block devices," is a powerful tool that provides detailed information about block devices such as hard drives, solid-state drives, and other storage-relat 6 min read lshw command in Linux with Examples The 'lshw' (List Hardware) command in Linux/Unix is a powerful tool for extracting detailed information about the system's hardware configuration. This tool retrieves data from files in the '/proc' directory and is capable of reporting on a wide array of components, including memory configuration, C 3 min read lsmod command in Linux with Examples lsmod command is used to display the status of modules in the Linux kernel. It results in a list of loaded modules. lsmod is a trivial program which nicely formats the contents of the /proc/modules, showing what kernel modules are currently loaded. Syntax: lsmod Example: Run lsmod at the command lin 1 min read Like