1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 14:35:24 +02:00
tldr/pages/linux/lsusb.md
2025-05-05 22:06:06 +05:30

24 lines
513 B
Markdown

# lsusb
> Display information about USB buses and devices connected to them.
> More information: <https://manned.org/lsusb>.
- List all the USB devices available:
`lsusb`
- List the USB hierarchy as a tree:
`lsusb {{[-t|--tree]}}`
- List verbose information about USB devices:
`lsusb {{[-v|--verbose]}}`
- List detailed information about a USB device:
`lsusb {{[-v|--verbose]}} -s {{bus}}:{{device number}}`
- List devices with a specified vendor and product ID only:
`lsusb -d {{vendor}}:{{product}}`