Manage iphone in linux and iphone in linux
Scenario:
Linux release: ubuntu 14.04 64bit 3.small-67-generic (kernel version)
Iphone model: iphone 5c (jailbreak for ios 8.1.3)
Preparations (make sure to perform the following two steps first ):
1. In the pop-up dialog box of the iphone, you must trust it;
2. Turn off the iphone password. (After mounting, you can open the password)
Procedure:
1. Install the libimobiledevice-dev Library ("-dev" cannot be missing)
Sudo apt-get update (update the source, which is the 163 source I use)
Sudo apt-get install libimobiledevice-dev
2. Install ifuse
Sudo apt-get install ifuse
3. Create a mount point (I created the u directory under the/media Directory)
Sudo mkdir/media/u
4. Use ifuse for mounting
Ifuse/media/u
The prompt is as follows:
Fusermount: failed to open/etc/fuse. conf: Permission denied
Fusermount: user has no write access to mountpoint/media/u
Solution:
Sudo chmod 777/media/u
Try mounting again:
Ifuse/media/u
5. Use ls and df check
Ls/media/u
The following content is displayed:
AirFair Downloads PhotoData PublicStaging Recordings
Books general_storage Photos Purchases report_3K.plist
DCIM iTunes_Control Podcasts Radio
Df-h
The following content is displayed:
Ifuse 13G 13G 289 M 98%/media/u
Indicates that the iphone has been mounted successfully !!!!
6. Uninstall
Fusermount-u/media/u
7. install other tools
Sudo apt-get install ideviceinstaller
Sudo apt-get install libimobiledevice-utils
Ideviceinfo can be used to view information about the iphone.