How to Track an iPhone or iPad

(0 votes, average 0 out of 5)

Since the iPhone and the iPad have an internal GPS receiver, they can be tracked or a lost device can be found using Apple's Mobile Me service.

You can learn more about this service or sign up for a free trial of Mobile Me at http://www.apple.com/mobileme/features/find-my-iphone.html.

Partner Links:
Last Updated on Thursday, 22 July 2010 20:02  
Related Articles

» Comments in Python

Line CommentsLine comments in Python are very simple.  The # character denotes that everything afterward on that line is a comment.  12#here is a whole-line comment for some codex = 3 #this comments code on the current line Block CommentsUnfortunately, there is no specific syntax for block comments in python.  To comment a block of code, you must simply place a # before every line in the block of code you wish to comment.  Many Python IDE's, however, provide a simple way...

» How to Move (or 'Cut and Paste') a File in Linux

Moving a file in linux is as easy as using the mv command:mv filename.txt foo/bar/newname.txtThe command above would move a file named filename.txt into the bar directory with a new name (newname.txt). If you only specify the directory, the name of the file will not change.

» Make an ISO file from Folders or CDROM drive in Linux

If you want to create an ISO image of a CD/DVD or a folder and its contents for archive purposes, copies, easy mounting, burning out, and other purposes, Linux comes with two quick and easy to use command line utilities to make this happen dd and mkisofs.First you will need to open a terminal ("CTRL + ALT + T" in Ubuntu) and type in the following commands for the operation you want to accomplish. CD/DVD Drive:Type: sudo umount /dev/cdrom to unmount your CDRom drive from the...