Skip to content

Instantly share code, notes, and snippets.

@madstap
Created August 28, 2017 02:37
Show Gist options
  • Save madstap/0910315e4be2c826df8d6196b4db448a to your computer and use it in GitHub Desktop.
Save madstap/0910315e4be2c826df8d6196b4db448a to your computer and use it in GitHub Desktop.
How to get at the file system in an iphone
#/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