forked from gregkh/usbutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lsusb.py.1.in
67 lines (65 loc) · 1.73 KB
/
lsusb.py.1.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.\"SPDX-License-Identifier: GPL-2.0-only
.\"Copyright (c) 1999 Thomas Sailer <[email protected]>
.\"Copyright (c) 2020 Sam Morris <[email protected]>
.TH lsusb.py 1 "03 January 2024" "usbutils-VERSION" "Linux USB Utilities"
.IX lsusb.py
.SH NAME
lsusb.py \- list USB devices
.SH SYNOPSIS
.B lsusb.py
[
.I options
]
.SH DESCRIPTION
.B lsusb.py
is a utility for displaying information about USB buses in the system and the
devices connected to them. It uses the
.B usb.ids
file to associate a human-readable name to the vendor and product IDs.
.PP
In comparison with
.BR lsusb (8),
this program can display additional information such as the interface speed of
a device, and details of a device's interfaces including the driver bound to
them and Linux devices provided by the driver, and the details of device and
interface endpoints.
.SH OPTIONS
.TP
.BR \-h ", " \-\-help
Displays options supported by
.BR lsusb (1).
.TP
.BR \-i ", " \-\-interfaces
Display information about the interfaces of each device, excluding hubs.
.TP
.BR \-I ", " \-\-hub\-interfaces
Display information about the interfaces of each device, including hubs., excluding hubs.
.TP
.BR \-u ", " \-\-hide\-empty\-hubs
Suppress information about hubs that have no devices connected.
.TP
.BR \-U ", " \-\-hide\-hubs
Suppress information about hubs, even if they have devices connected.
.TP
.BR \-c ", " \-\-color
Use color
.TP
.BR \-C ", " \-\-no\-color
Don't use color
.TP
.BR \-e ", " \-\-endpoints
Include information about device (and interface, with
.BR -i )
endpoints.
.TP
.BR \-f ", " \-\-usbids\-path
Overrides the path of the
.B usb.ids
file.
.SH SEE ALSO
.BR lspci (8),
.BR lsusb (8),
.BR usbview (8).
.SH AUTHOR
Thomas Sailer, <[email protected]>,
Sam Morris <[email protected]>.