I am completely new to linux so I need things spelled out for me. I'm trying to mount an iphone 5s with ios 8.3 to Ubuntu 14.04 running Nvidia drivers.
4 Answers
First, let me apologize for this information not being as complete as I would like it.
The following is confirmed to work on Ubuntu 15.04 (Vivid Vervet):
Install the required support libraries:
sudo apt-get install libimobiledevice-utils usbmuxd ifuse
You will want to reboot due to udev entries updated per "usbmuxd".
The following commands are used to pair you iPhone/iPad devices to your PC:
mkdir /media/iphone chown {your userID}:{your groupID} /media/iphone chmod 775 /media/iphone /usr/bin/idevice_id -l(this command displays a 40 character identifier unique to your idevice)
/usr/bin/idevicepair -u ## pair ifuse /media/iphone -u...or you can simplify the last two lines by typing this:
/usr/bin/idevicepair -u \`/usr/bin/idevice_id -l\` pair ifuse /media/iphone -u \`/usr/bin/idevice_id -l\`
This works for me :)
- 77,855
- 31
idevicepair and ifuse are the tools I used on Kubuntu 15.10 to mount my iphone 6 and transfer 40GB of pictures.
thank you
- 1,256
In my case I am using kubuntu 16.04 and an iPhone 4s.
After installing the libraries like explained in previous questions and ifuse, when using ifuse my iPhone would still not mount. It wouldn't neither charge although it vibrated when connecting to my computer.
I solved this problem by restarting the usbmux process (http://www.phenomtech.net/2015/02/fix-non-charging-iphone-through-usb-on-ubuntu-linux.html):
ps aux | grep usbmux
sudo kill -9 xxxx
sudo usbmuxd -u -U usbmux
Where xxxx is the process id seen using "ps aux".
After restarting this process I could mount using ifuse (and access my photos) and my phone was charging too.
- 340