blob: ee724f80bf9d6fe37dec323f25860e76b0e618c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
INSTALLATION
================================================================================
You must have:
libgnutls-dev
libusb-dev
libfuse-dev (and the associated kernel modules)
libglib2.0-dev
libxml2-dev
make
autoheader
automake
autoconf
gcc
To compile run:
./autogen.sh
./configure
make
sudo make install (if you want to install it into your system directories)
libiphone-initconf (as the user you intend to user the library)
USAGE
================================================================================
IMPORTANT: Before using the library you must run "libiphone-initconf". It will
generate keys and a host id for your system. It only needs to be run once but
it MUST be run.
There are currently 2 executables iphoneclient and ifuse, located in src/.
iphoneclient is a basic commandline interface, it just runs a few various operations.
ifuse is a Fuse filesystem which allows you to mount your iPhone to a directory
like this:
./src/ifuse mountpoint
To unmount:
umount mountpoint
|