Created
April 22, 2013 12:23
-
-
Save dogtopus/5434537 to your computer and use it in GitHub Desktop.
PandaDaemon remove script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Run as root, and it'll remove PandaDaemon automatically | |
# Make sure you have uninstalled ALL the pxl package before you run this script | |
# This script comes up with NO WARRANTY, it may brick your iOS device, you should know what you're doing before you start. | |
echo 'Cleaning up...' | |
rm -rf /Applications/PandaSpace.app | |
rm -rf /var/mobile/PandaSpace | |
rm -rf /var/mobile/Library/PandaSpace/ | |
rm -rf /var/mobile/Library/NetDragon/ | |
rm -rf /var/mobile/Library/TQServer/ | |
rm -rf /var/mobile/Media/PandaSpace/ | |
rm -rf /var/mobile/Media/DownAgent/ | |
rm -rf /var/mobile/Media/PandaHome/ | |
rm -rf /var/mobile/Media/PandaSpaceTmp/ | |
rm -f /System/Library/LaunchDaemons/`ls -a1 /System/Library/LaunchDaemons/ |grep -E 'NetDragon|PandaSpace|PandaDaemon'` | |
rm -f /usr/bin/TQServer /usr/bin/DownAgent | |
rm -rf /var/root/Library/NetDragon | |
rm -rf /var/root/Library/ndDaemon | |
rm -rf /var/root/Media/PXL | |
rm -rf /var/root/Media/ndDaemon | |
echo 'Rebooting...' | |
reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment