Flaire
Results
1
comments of
Flaire
I've used this script on Ubuntu to find which port is mapped to which USB device: ``` #!/bin/bash for sysdevpath in $(find /sys/bus/usb/devices/usb*/ -name dev); do ( syspath="${sysdevpath%/dev}" devname="$(udevadm info...