How to install libimobiledevice?
Just as the title states how do I install that library to manage my iPhone?
Solution 1:
First try this:
- Type in terminal
sudo add-apt-repository ppa:pmcenery/ppa
- Then run
sudo apt-get update
. - Then run
sudo apt-get install libimobiledevice
.
If it says Package not found:
- Type in terminal
sudo gedit /etc/apt/sources.list.d/pmcenery.list
-
It will open Gedit, a text editor. Replace these two lines...
deb http://ppa.launchpad.net/pmcenery/ppa/ubuntu oneiric main deb-src http://ppa.launchpad.net/pmcenery/ppa/ubuntu oneiric main
...with these two lines:
deb http://ppa.launchpad.net/pmcenery/ppa/ubuntu maverick main deb-src http://ppa.launchpad.net/pmcenery/ppa/ubuntu maverick main
Save the file.
- Then again in terminal, run
sudo apt-get update
. - Then run
sudo apt-get install libimobiledevice
.