Nick's Blog and Digital Garden · Mar 10, 2024
Resetting USB devices on Linux
0Sign in to vote or save
This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.
Resetting USB devices on Linux Usbutils has a usbreset command that will reset a given USB device:
# usbreset 046d:0843 Resetting Logitech Webcam C930e ... ok lsusb can be used to find the right device ID. This awk snippet may help with scripting (using the same Logitech webcam as an example again here):
$ lsusb | awk '/C930e/ { print $6 }' 046d:0843 Alternatively, to reset all of the…
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.