Advertisement
Guest User

disable location tracking consolidated.db script for iphone

a guest
Apr 20th, 2011
4,596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. #!/bin/sh
  2. # disable-consolidated.sh -  permanently disable consolidated.db for IOS4
  3. #
  4. # Usage: Jailbreak your iphone and run this script as root.
  5.  
  6. # path to consolidate.db
  7. DB="/private/var/root/Library/Caches/locationd/consolidated.db"
  8.  
  9. # erase location history
  10. rm $DB
  11.  
  12. # symlink to blackhole
  13. ln -s /dev/null $DB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement