Difference between revisions of "IPhone USB Tethering Ubuntu"

From MS Computech
Jump to: navigation, search
(Created page with '<pre> sudo add-apt-repository ppa:pmcenery/ppa sudo apt-get update sudo apt-get install gvfs ipheth-utils </pre> ================================================ [ht…')
 
(==)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
'''Tether via USB'''<br>
 +
Tethering your iPhone via USB uses a iPhone Ethernet driver written by Diego Giagio. Paul McEnery has set up a PPA repository with the driver and it’s dependencies so there is no longer the need to compile both ‘libiphone’ and ‘ipheth’. The first step is to add the PPA repository to your Synaptic repositories. To do so, open a new Terminal window and execute the following command
 +
 +
<pre>
 +
sudo add-apt-repository ppa:pmcenery/ppa
 +
sudo apt-get update
 +
sudo apt-get install gvfs ipheth-utils
 +
</pre>
 +
'''Tether via Bluetooth'''<br>
 +
<pre>
 +
sudo add-apt-repository ppa:blueman/ppa
 +
sudo apt-get update
 +
sudo apt-get install blueman
 +
</pre>
 +
If you have an error Unable to mount iphone you need to upgrade libmobiledevice
 
<pre>
 
<pre>
    sudo add-apt-repository ppa:pmcenery/ppa
+
sudo add-apt-repository ppa:gwibber-daily/ppa
    sudo apt-get update
+
sudo apt-get update
    sudo apt-get install gvfs ipheth-utils
+
sudo apt-get upgrade
 
</pre>
 
</pre>
 
 
================================================
 
================================================
[http://www.ubuntugeek.com/iphone-tethering-on-ubuntu-9-10-karmic.html Source]
+
[http://www.ubuntugeek.com/iphone-tethering-on-ubuntu-9-10-karmic.html Source]<br>
 +
[http://www.libimobiledevice.org/ Source Lib]<br>
 +
[https://launchpad.net/~pmcenery/+archive/ppa Libmobiledevice]

Latest revision as of 22:02, 18 March 2011

Tether via USB
Tethering your iPhone via USB uses a iPhone Ethernet driver written by Diego Giagio. Paul McEnery has set up a PPA repository with the driver and it’s dependencies so there is no longer the need to compile both ‘libiphone’ and ‘ipheth’. The first step is to add the PPA repository to your Synaptic repositories. To do so, open a new Terminal window and execute the following command

sudo add-apt-repository ppa:pmcenery/ppa
sudo apt-get update
sudo apt-get install gvfs ipheth-utils

Tether via Bluetooth

sudo add-apt-repository ppa:blueman/ppa
sudo apt-get update
sudo apt-get install blueman

If you have an error Unable to mount iphone you need to upgrade libmobiledevice

sudo add-apt-repository ppa:gwibber-daily/ppa
sudo apt-get update
sudo apt-get upgrade
====================================

Source
Source Lib
Libmobiledevice