What if there is no way to recover your last iTunes Persistent ID from your PC/Mac? i.e. You have formatted your computer, have no longer access to it, or even worse, it’s been stolen.
In order to avoid erasing your iPhone/iPodTouch and starting all over again, there is still a chance to retrieve this magic ID, so you can then use it to make your computer’s iTunes library to match it.
Since a couple of guys have already asked about this, I though it might be of some help to describe how to do this.
I am aware that this method may seem fairly discouraging to most users, but I would also add that it’s not as complex at it may seem at first sight.
First of all, you will need to have access to your iPhone’s operating system (i.e. be able to browse through its files). The only way I know so far is to have the iPhone jailbroken. If you don’t know yet what this is,ย iClarified has probably the best tutorials I have seen about this.
If you already have your iPhone jailbroken read on.
The idea is to get the iTunes Persistent ID directly from the very same file where it is stored inside your iPhone. This file is binary (and there is no XML equivalent pair as in the PC/Mac version of the iTunes library). The persistent ID is stored here, in a very similar way as Andrew found out for the PC/Mac versions of the library.
The Persistent ID is 8 byte long and spans exactly from byte 37-44. Bear in mind that the iPhone platform is little-endian, while PC and Intel Macs are big-endian. This means that the bytes are stored in a different order on the iPhone and on the computer (either PC or Intel Mac).
Probably I may be getting a bit too technical, so the best way to illustrate this method is to actually describe a sample process to read this ID.
I have chosen a very simple approach where you only need to log on your iPhone via ssh and type a couple of commands.
Get network access from your computer to your iPhone
1) Make sure your iPhone is jailbroken and has the SSH package installed. If not, you can use Cydia or Installer to get it on your device.
2) Connect your iPhone to the same Wi-Fi network your computer has access to. In the example below, my WiFi network is named LUCERO.
3) Take note of the IP address of your device. This can be easily retrieved by touching the blue > sign at the right of your WLAN’s name. A new screen with some connection’s details appear. In the screenshot below, the IP address of the iPhone is 192.168.1.101.
4) I will highly recommend to turn off momentarily the Auto-Lock feature of the phone, since the SSH connection will be guillotined if the iPhone enters in standby mode (blank screen). Go to Settings, General, Auto-Lock and select Never. You can turn this option on again once you are done reading the ID.
5) Connect via ssh to your phone, using the IP address you have written before (192.168.1.101 in my example). MacOS has a nice SSH client built in, and you only need to type ssh and the address in a command line window (i.e: ssh 192.168.1.101). On Windows, I would recommend downloading and installing putty, a really nice and free ssh protocol client.
6) Once you have your ssh connected to your iPhone you will be prompted to enter a user and a password. User is “root” and password is “alpine” (without the quotes!).
login as: root
root@192.168.1.101's password:
localhost:~ root#
View the contents of the iTunes database file
7) Don’t take my word for it and locate the actual location of the iTunes library file on your iPhone.
localhost:~ root# find / -name iTunesDB
/private/var/mobile/Media/iTunes_Control/iTunes/iTunesDB
localhost:~ root#
8 ) This is the file that contains your lost Persistent ID. You can choose to view its contents as you want, but I think good old vi editor is an easy choice for this purpose. Don’t worry about what you may have heard about the toughness of this editor. We are only going to use it very briefly, so you don’t need to be a unix geek.
vi /private/var/mobile/Media/iTunes_Control/iTunes/iTunesDB
If the above command fails, you need to install the vi package (again, use Cydia or Installer).
The result is an scrambled window with some funny characters. Remember iTunesDB is a binary file, so we need to turn on the hexadecimal editor mode of vi.
Press [escape]
to enter in the command mode and type
:%!xxd
Now the window should look like this:
9) Now take note of the bytes 37 to 44 and write them somewhere or copy them to a text file. In the screenshot below, these bytes areย 2e94 2b95 87f2 8cde
.
10) Hurray you are a genius and have extracted the Persistent ID! The hardest part is now done. Give yourself a kiss and keep on reading. We are almost there.
Re-write the Persistent ID value in the appropriate (byte) order
10) Now write these value again in reverse order (remember the big endianness of the PC/Intel Macs); bearing in mind that a byte is shown as 2 hexadecimal characters, so you have to take them in pairs. I would also remove any white space in between so you can copy and paste the result in iTunes DB Cloner. Lost? Don’t worry, check the sample value: 2e94 2b95 87f2 8cde
converted to big endian is DE8CF287952B942E
.
Update your computer’s iTunes library to match the Persistent ID on your device
11) Now use this value in iTunes DB Cloner to alter your PC’s iTunes library, so it matches the persistent ID already stored in your iPhone. If you are using a Mac, update the value following Andrew’s instructions.
12) You can now logoff from your iPhone’s unix shell. Type q!
in your vi window. and then logout
or press CONTROL+D
to end your terminal session. Remember to turn on again the Auto-Lock feature to some value or your iPhone will remain on if you don’t send it to sleep manually by pressing the power button.
… and that’s all folks. Hope it was of some help to those of you as desperate to save your iTunes library as to have read all this.
This post was written in bit of a hurry, so I might have not been clear enough. Any comments or requests for clarifications will be welcomed.
#1 by pad on June 24, 2009 - 4:23 am
hello,
this guide wont work.
i just followed your steps, but the message with the mediathek still appears. just had a look into the eifon db file, because i want to know if there is the same id, but now with OS 3.0 the bytes 37 too 44 are only zeros. just tried to edit these bytes to my id, but the message still appears. need help!
#2 by Stromek on July 20, 2009 - 10:18 pm
Lol, very funny…
#3 by Felipe on July 20, 2009 - 11:22 pm
Hi Pad,
Sorry it took me so long to read your post.
I have just checked and ID is still stored in bytes 37-44 in OS 3.0.
Please make sure you are actually editing these bytes.
Note that in the screenshoot bytes 37-44 appears on the third line with header 0000020, NOT on fourth 0000030 that contains from 49-64!
Looks like you might have been looking into the latter. (?)
Hope that it helps.
#4 by eddie on July 24, 2009 - 4:51 am
I am using ultraedit on xp to view a file called library.itdb
This is the closest i was able to finding a itunesdb in
/private/var/mobile/Media/iTunes_Control/iTunes/iTunesDb
what am i doing wrong??! I have a 3GS with 3.0
#5 by Dave on August 13, 2009 - 5:33 pm
All zeros for me as well in firmware 3.0… Anyone know how to find the correct values?
#6 by Kim Pham on August 17, 2009 - 9:44 pm
On my iphone 2G the file is itunesdb, but on my cousins iphone 3G it’s iTunesCDB.
Both is running firmware 3.0
#7 by Noah on August 17, 2009 - 10:51 pm
People having issues finding the right offset: This post uses the decimal offsets (37 and 44) for getting the right place in the itunesDB.
#8 by Jon on September 8, 2009 - 3:45 pm
On my iphone 3g, I am only finding a itunesCDB as well. But after following your instructions itunes still wont let me modify my music. Any ideas would be greatly appreciated.
#9 by aBBAS on October 31, 2009 - 3:13 pm
iTunedDB File Is Empty ( 0 Bytes )
#10 by Ryan on December 24, 2009 - 10:01 am
Awww man….I almost thought this was it…Please prove me wrong but this is just not going anywhere for me. Please someone find an easier way to get the persistent ID or maybe more step by step directions with better details. I keep getting error messages when typing or pasting these commands in. I have tried using putty as well as WinSCP.
I had to reformat because of spyware and now I am suffering the consequences of Apple’s great control over their users.
Please someone help me locate my persistent ID off from my Iphone or add a feature to the DB Cloner or something…Help me god, I hate Apple for this BS! I cant add music ๐
#11 by Hptsang on February 24, 2010 - 5:34 pm
Use the DB Cloner and then come to this website and it will help you get the code.
http://ember.awirtz.com/~awirtz/cgi-bin/itunes-id.pl
I just followed the direction from that link and use the DB Cloner and got it to work. Hope that will solve everyone’s problem.
#12 by paul on November 16, 2010 - 5:53 am
Hptsang, you my friend are a wonderful person, thank you for the webpage, it solved my problem
#13 by George on November 16, 2010 - 12:06 pm
Yo dude,
There is a much easier way to recover your Lib. ID.
http://www.magicspace.eu/software/iphone-itunes-sync-recover-your-library-persistent-id/
I think that is the best method as it does not require a jailbreak.
#14 by Felipe on November 16, 2010 - 12:51 pm
Thanks! It looks very well. Will give it a try later.
#15 by Baghera on December 17, 2010 - 8:23 am
Hey for some reason iTunes can detect the changes made to the itl files, and it automatically creates a new one before starting up. i tried using DB cloner on both iTunes 9 and 10. no luck yet ๐
#16 by Tyler on August 9, 2011 - 6:05 am
Just go to http://ember.awirtz.com/~awirtz/cgi-bin/itunes-id.pl and it gives you the ID without you having to go through all these steps and downloading these programs
#17 by housewg on November 14, 2011 - 9:27 pm
Filename changed to iTunesCDB