how to fix your weather app.

Ok I’ve made a quick how to fix your weather app.

Step 1. make sure you have some SSH software installed on your PC ( I’m using WINSCP in Windows )

Step 2. make sure you install OPENSSH from Cydia on your device, its a free download

Step 3. SSH into your device, make sure your iPhone is connected to Wifi

Step 4. Once connected, type in the following command cat > fix.sh

Step 5. Paste the code below, then press CTRL + Z

chmod -x /usr/libexec/mobile_installation_proxy
killall -9 mobile_installation_proxy
rm /var/mobile/Library/Caches/com.apple.mobile.installation.plist /var/mobile/Library/Caches/com.apple.LaunchServices-045.csstore
launchctl stop com.apple.mobile.installd
launchctl start com.apple.mobile.installd

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

sleep 10

chmod +x /usr/libexec/mobile_installation_proxy

Step 6. Now you have your script ready and ready to go so lets run it.

Step 7. type these commands in order

fix.sh ( let the script finish )
sync
reboot
Note :

default user name and password for any iOS device is user : ‘root’ & password : ‘alpine’
when your device locks and screen turns off, your wifi disconnects and you wont be able to SSH into the device

No comments: