This question seems to be all over google, but the answers all point to using System Profiler. That\'s nice, but with System Profiler all you get is something that looks like th
I typically run this command to list USB devices on Mac OS X, along with details about them:
ioreg -p IOUSB -l -w 0
How about ioreg
? The output's much more detailed than the profiler, but it's a bit dense.
Source: https://lists.macosforge.org/pipermail/macports-users/2008-July/011115.html
I got tired of forgetting the system_profiler SPUSBDataType
syntax, so I made an lsusb
alternative. You can find it here , or install it with homebrew:
brew install lsusb
At least on 10.10.5, system_profiler SPUSBDataType
output is NOT
dynamically updated when a new USB device gets plugged in,
while ioreg -p IOUSB -l -w 0
does.
On Mac OS X, the Xcode developer suite includes the USB Proper.app application. This is found in /Developer/Applications/Utilities/. USB Prober will allow you to examine the device and interface descriptors.
Homebrew users: you can get lsusb
by installing usbutils
formula from my tap:
brew install mikhailai/misc/usbutils
It installs the REAL lsusb
based on Linux sources (version 007).