Get UUID without iTunes

Viewed 79570

I am looking for a way to extract my iPhone (OS v3.0) UUID without using iTunes. I tried "UUID Revealer" from Cydia Store but that is not working on my system. I could SSH with WinSCP and I have a Terminal Program Installed. Any chances using one of those tools (or another one) to bring to light my UUID? Thanks

10 Answers

Just go to Finder, find your device. Trust it, click xx.xxGB and it will switch among uuid态ime and xxx.GB. Right click the content and copy it. Done :)

On VMWare:

  1. open the VMWare-Logs (On Linux: in your VMWare Directory, vmware.log).
  2. Plugin your Iphone and connect it in VMware as USB-Device
  3. Search in the logs for: "USB: Device [name:Apple". In this Line, you find serialnum:. This is the UUID you"re searching for.

First of all, connect your iOS device to Linux/Unix machine, and then run this simple Linux command to get UDID:

lsusb -s `lsusb | grep "Apple" | cut -d ' ' -f 2`:`lsusb | grep "Apple" | cut -d ' ' -f 4 | sed 's/://'` -v | grep iSerial | awk '{print $3}'

or for some Linux distros, use this:

lsusb -s :`lsusb | grep iPhone | cut -d ' ' -f 4 | sed 's/://'` -v | grep iSerial | awk '{print $3}'
Related