tldr/pages/linux/lsusb.md

25 lines
482 B
Markdown
Raw Normal View History

2018-10-09 21:12:30 +01:00
# lsusb
> Display information about USB buses and devices connected to them.
> More information: <https://manned.org/lsusb>.
2018-10-09 21:12:30 +01:00
- List all the USB devices available:
`lsusb`
- List the USB hierarchy as a tree:
`lsusb -t`
- List verbose information about USB devices:
`lsusb --verbose`
- List detailed information about a USB device:
`lsusb --verbose -s {{bus}}:{{device number}}`
2018-10-09 21:12:30 +01:00
- List devices with a specified vendor and product ID only:
2018-10-09 21:12:30 +01:00
`lsusb -d {{vendor}}:{{product}}`