Advertisement
jonsul97

Weather App Fix Guide by @jonsul97

Feb 5th, 2013
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. by @jonsul97 code by @pod2g
  2.  
  3. Simple Guide to Fixing Your Weather App For Evasi0n Jailbreak
  4. Before we get started:
  5.  
  6. a. Your iDevice and computer must be connected to the same network.
  7. b. For Windows, use Putty instead of Terminal.
  8.  
  9. 1. Download OpenSSH to your iDevice via Cydia.
  10. 2. Head over to Settings, General, Wifi, click the blue arrow next to the wifi network you are connected to, see the IP address? It should be at the top and start with a 192.168.x.x, save it.
  11. 3. Open Terminal on your Mac and type ssh root@(Insert your iDevices IP address here without parentheses), hit enter.
  12. 4. When it asks for password, type "alpine", hit enter
  13. 5. Change your password, this is VERY important. Type passwd, hit enter, then type your desired root password twice.
  14. 6. Copy and paste this code into Terminal: (credits to pod2g)
  15. chmod -x /usr/libexec/mobile_installation_proxy
  16. killall -9 mobile_installation_proxy
  17. rm /var/mobile/Library/Caches/com.apple.mobile.installation.plist /var/mobile/Library/Caches/com.apple.LaunchServices-045.csstore
  18. launchctl stop com.apple.mobile.installd
  19. launchctl start com.apple.mobile.installd
  20.  
  21. while [ ! -f /var/mobile/Library/Caches/com.apple.mobile.installation.plist ];
  22. do
  23. sleep 1
  24. done
  25. while [ ! -f /var/mobile/Library/Caches/com.apple.LaunchServices-045.csstore ];
  26. do
  27. sleep 1
  28. done
  29.  
  30. sleep 10
  31.  
  32. chmod +x /usr/libexec/mobile_installation_proxy
  33. sync
  34. reboot
  35. 7. The code should run itself for a few seconds, when it stops hit enter again and it will reboot your device.
  36. 8. After your iDevice starts again, your weather app should be fixed.
  37. Enjoy!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement