I just noticed that when I disconnected a USB drive, a message was logged from "usb 1-1:". Does this mean my ports are 1.1, this particular device is a 1.1 device, or is it a meaningless message?

Is there a way to tell which ports are what under linux?

link|improve this question

66% accept rate
feedback

2 Answers

up vote 3 down vote accepted

The 1-1 is just the number Linux gave to your device. It means, as far as I can tell, the device on the first port on the first USB bus (take a look at lsusb to see if bus 001 is a 1.1 or 2.0 bus). On my machine, I see 1-2.1 and 1-2.2 (the keyboard and mouse plugged on both ports of the hub plugged on the second port of the first USB bus). Note that the same port is often on two buses, one 1.1 (OHCI or UHCI) and one 2.0 (EHCI), and which one is used depends on whether the device is high-speed (2.0 only) or full-speed/low-speed (1.1 or 2.0).

You can see more interesting information with lsusb -v or sudo lsusb -v.

link|improve this answer
feedback
lsusb -v

Look for value for bcdUSB field. Should be either 2.00 or 1.10.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.