Created
August 28, 2017 02:37
-
-
Save madstap/0910315e4be2c826df8d6196b4db448a to your computer and use it in GitHub Desktop.
How to get at the file system in an iphone
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/sh | |
# https://askubuntu.com/questions/799414/how-to-move-files-from-ubuntu-to-iphone | |
idevicepair pair | |
# Will exit with an error if there's a password on the device | |
# so unlock the device, | |
# then it will error again, but open a dialogue on the device. | |
# accept then validate with | |
idevicepair validate | |
# get info | |
ideviceinfo | |
#### | |
# create mountpoint | |
sudo mkdir /media/iPhone # you may need to use UniqueDeviceID instead of iPod-touch | |
# Give all users access to the mount point. | |
sudo chmod 777 /media/iPhone | |
# mount the thing | |
ifuse /media/iPhone/ | |
# now you can access the phone | |
nautilus /media/iPhone |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment