I have a bunch of thumb drives, and many of them don't have any writing on them to indicate that they are USB 3.0.
In Ubuntu; how can I ascertain if they are USB 3.0 when I plug them in?
I have a bunch of thumb drives, and many of them don't have any writing on them to indicate that they are USB 3.0.
In Ubuntu; how can I ascertain if they are USB 3.0 when I plug them in?
Make sure that you have a USB flash Drive plugged in.
Open terminal. Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
That will list USB information. Look for the USB flash drive info as shown in the image below:
Then do
To get more info about the USB flash drive, and look for bcdUSB, and that will tell you if its USB 2 or 3, plus as Dan said in his comment, USB 3 connectors are usually Blue.
Source:lsusb Man page
This test does not read the version from the device but tests for actual capabilities. If you don't have USB3.0 port, this test will give you false results so make sure to use USB 3.0 (or higher) port.
Open terminal and start by running this command:
You should get a list of all USB devices in your system that looks something like this:
Try to find your device (if you can't find it, unplug it, and run the command again and compare what is gone), my device in this case is:
Now when you know the bus and device numbers run the same command with additional parameters:
'-v' is for more verbosity, '-s [bus]:[device]' is to choose what to display. Change the numbers to reflect your device's bus:device numbers. Now you should get a long list of parameters but somewhere near the top of the list you should see parameter 'bcdUSB' and a corresponding value:
The number is USB version currently in use, in my case USB 3.0. It's always the best version your system AND the device can support at the time so make sure you plug your devices into USB 3.0 port for this test.
I hope this helps.
Cheers, Bushman
If the inside of the USB is blue then the USB is 3.0.
USB 3.0 connectors are only usually blue. What makes a connector USB 3 instead of USB 2 is the presence of five extra pins, as in https://en.wikipedia.org/wiki/USB_3.0#/media/File:Connector_USB_3_IMGP6024_wp.jpg
If the connector doesn't have the row of five pins then the drive can't be USB 3.0. If the connector does have the row of five pins then it would be very stupid if the drive isn't at least USB 3.0.