1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00

lsusb: add page (#2409)

This commit is contained in:
Maharaj Fawwaz Almuqaddim Yusran 2018-10-10 04:12:30 +08:00 committed by Starbeamrainbowlabs
parent 1fb034577d
commit d5ae9f93c4

23
pages/linux/lsusb.md Normal file
View file

@ -0,0 +1,23 @@
# lsusb
> Display information about USB buses and devices connected to them.
- 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 -D {{device}}`
- List devices with a specified vendor and product id only:
`lsusb -d {{vendor}}:{{product}}`