forked from gregkh/usbutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
usbreset.1.in
53 lines (46 loc) · 1.23 KB
/
usbreset.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
.\" SPDX-License-Identifier: GPL-2.0-only
.\" Copyright (c) 2023 Aurelien Jarno <aurelien@aurel32.net>
.TH usbreset 1 "04 January 2024" "usbutils-@VERSION@" "Linux USB Utilities"
.IX usbreset
.SH NAME
usbreset \- send a USB port reset to a USB device
.SH SYNOPSIS
.B usbreset
[
.I device
]
.SH DESCRIPTION
.B usbreset
is a utility that performs resets on USB devices. It is particularly useful
situations where a USB device is unresponsive or exhibits erratic behavior.
The USB \fIdevice\fP to be reset can be specified in one of three formats:
.TP
.BR PPPP:VVVV
Reset by product and vendor IDs
.TP
.BR BBB/DDD
Reset by bus and device number
.TP
.BR "Product"
Reset by product name
.PP
When run without any arguments,
.B usbreset
provides usage information and a list of connected USB devices, including their
product and vendor IDs, bus and device numbers, and product names.
.SH RETURN VALUE
If the specified device is not found, a non-zero exit code is returned.
.SH EXAMPLES
.TP
Reset device with vendor ID 1234 and product ID 5678:
.B usbreset 1234:5678
.TP
Reset device 002 on bus 001:
.B usbreset 001:002
.TP
Reset device named USB2.0 Hub:
.B usbreset """USB2.0 Hub"""
.SH SEE ALSO
.BR lsusb (8).
.SH AUTHOR
Alan Stern <stern@rowland.harvard.edu>