Just as the title states how do I install that library to manage my iPhone?
Asked
Active
Viewed 3.2k times
6
-
On my 12.04 the target sorce list file is here: /etc/apt/sources.list.d/pmcenery-ppa-precise.list I have changed precise by maverick, but I still got Package not found error message. – Jun 28 '12 at 11:30
1 Answers
7
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
.

Eliah Kagan
- 117,780

RobinJ
- 8,910
-
On 12.04 I got this response, even editing back to maverick as you suggested. W: Failed to fetch http://ppa.launchpad.net/pmcenery/ppa/ubuntu/dists/precise/main/source/Sources 404 Not Found W: Failed to fetch http://ppa.launchpad.net/pmcenery/ppa/ubuntu/dists/precise/main/binary-i386/Packages 404 Not Found E: Some index files failed to download. They have been ignored, or old ones used instead. – Apr 12 '12 at 09:26
-