Liste Linux Liste du périphérique USB et de la vitesse du port

# This will list USB devices along with usb port type (see bcdUSB field)
sudo lsusb -vvv |grep -i -B5 -A5 bcdUSB
# Alternatively, this gives a hierarchical view of the USB devices
sudo lsusb -t


# This is another way to look at the usb devices and get some more info
lsblk -o model,name,fstype,size,label,mountpoint,serial,path

# References
# https://askubuntu.com/questions/162434/how-do-i-find-out-usb-speed-from-a-terminal
# https://askubuntu.com/a/604176/1197918
# https://askubuntu.com/a/973790/1197918
Muddy Moose