As you may be aware, the initial release of theevasi0n untethered jailbreakbroke a few minor features in iOS 6, most visibly the native Weather app on the iPhone and iPod touch. Word from the developers is evasi0n’s exploit corrupted an important plist settings file for System apps like Weather, Siri, and the App Store. Lucky for our tech savvy readers, there’s an easy fix that can replace the broken plist file in minutes. The script we are working with come from pod2g himself…

While pod2g and Planetbeing have submitted an updated package toCydiawhich should fix the issues with the corrupted plist file (as well as fixing a deeper issue that may have caused a noticeably long boot up sequence for some uses), you’re able to fix the Weather issue yourself by copying a script into terminal.

weather icon

If you haveMobileTerminalinstalled, you can actually run the script straight from your device itself. Otherwise you can tunnel into your device in iFunBox, orlog in through SSH.

Step 1:Copy the following script from your device’s browser:

#!/bin/bashchmod -x /usr/libexec/mobile_installation_proxykillall -9 mobile_installation_proxyrm /var/mobile/Library/Caches/com.apple.mobile.installation.plist /var/mobile/Library/Caches/com.apple.LaunchServices-045.csstorelaunchctl stop com.apple.mobile.installdlaunchctl start com.apple.mobile.installd

while [ ! -f /var/mobile/Library/Caches/com.apple.mobile.installation.plist ];dosleep 1donewhile [ ! -f /var/mobile/Library/Caches/com.apple.LaunchServices-045.csstore ];dosleep 1done

paste script weather

chmod +x /usr/libexec/mobile_installation_proxysyncreboot;

Step 2:You can’t paste directly into MobileTerminal, so we’ll have to work around this first. Open MobileTerminal, press the information button, and enter the shortcut menu. You will be able to paste the script into a new shortcut. Make sure the script is entered correctly, as the iPhone’s copy tool may miss the beginning or the end of the script.

shortcut menu weather fix

Step 3:Open MobileTerminal and log in as root. The command is ‘login root’ and the default password is ‘alpine’.

Step 4:Open the shortcut menu on the left hand side of the screen and select the new shortcut you created.

mobileterminal weather fix

Step 5:Set the device aside and let the script do its work. Once the command is finished, it should reboot automatically.

After your device reboots, you may open the Weather app to verify everything is working correctly. This may also fix issues associated with Siri and the App Store, though I haven’t noticed any of the issues on either of my devices. While you’re in MobileTerminal, you should take the opportunity tochange your terminal login information.

weather fixed

Let us know if you have any issues in the comments section below.

Edit:Added a semicolon to the end of the script to ensure the reboot sequence happens.