I previously wrote a post about iBlacklist and this is the next in the series. I will continue one by one until all my important apps with data stored locally are restored.
So I had a look at the system to see if I could find the Awesome Notes data. And after a quick search found the files I was looking for. It was not quite as simple but was able to find the info I was looking for without too many difficulties.
Requirements:
- Jailbroken iPhones
- OpenSSH on both old and new Jailbroken iPhones
- Awesome Note application installed on both iPhones
- Appears to be random but within a folder in /User/Applications/ directory.
Steps to recover your Awesome Note:
- Close Awesome Note on your new iPhone and make sure it is not running in the background. If it is, double tap your home button and hold down any backgrounded app for 2 seconds to allow you to close the app.
- Get the IP Address from your iPhones: Settings => Wi-Fi => Click on Blue arrow on your Wi-Fi access point => DHCP => IP Address
- SSH to your old iPhone:
- ssh root@[old iPhone IP Address]
- Locate your Awesome Note directory:
- find / -name '*aNote*' -print
- The output should display /private/var/mobile/Applications/[aNote Directory]/Library/aNoteFolder
- Create a container (otherwise known as zip) of the application data. This includes the preferences.
- tar cvf /private/var/mobile/Applications/[aNote Directory]/aNoteLibrary.tar /private/var/mobile/Applications/[aNote Directory]/Library
- Copy the files from old iPhone:
- scp root@[old iPhone IP Address]:/private/var/mobile/Applications/[aNote Directory]/aNoteLibrary.tar .
- SSH to your new iPhone:
- ssh root@[new iPhone IP Address]
- Locate your Awesome Note directory:
- find / -name '*aNote*' -print
- The output should display /private/var/mobile/Applications/[aNote Directory]/Library/aNoteFolder
- Copy the files to your new iPhone:
- scp aNoteLibrary.tar root@[new iPhone IP Address]:/private/var/mobile/Applications/[aNote Directory]/aNoteLibrary.tar
- Backup the original data directory:
- mv /private/var/mobile/Applications/[aNote Directory]/Library /private/var/mobile/Applications/[aNote Directory]/Library.old
- Unpack the container file:
- tar xvf /private/var/mobile/Applications/[aNote Directory]/aNoteLibrary.tar
- Launch Awesome Note on your new iPhone and confirm that everything is there.
- Reset your passcodes for any folders that were passcode protected. I am not sure why these settings were not carried over.
- Done
Let me know if you need clarification. And as always, please comment if this procedure was useful for you.

0 comments:
Post a Comment