• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H15-Jun-2020-564480

src/H15-Jun-2020-1,5241,273

AUTHORSH A D08-Apr-2012130 109

COPYINGH A D22-Apr-201025.8 KiB503418

Makefile.amH A D08-Jun-2020280 149

Makefile.inH A D15-Jun-202024.5 KiB793696

NEWSH A D15-Jun-20202.6 KiB11285

README.mdH A D15-Jun-20205.1 KiB172130

aclocal.m4H A D13-Jun-202053.3 KiB1,4801,333

compileH A D13-May-20207.2 KiB349259

config.h.inH A D13-Jun-20203.3 KiB11680

configureH A D13-Jun-2020190.7 KiB6,5925,509

configure.acH A D09-Jun-20201.4 KiB5543

depcompH A D13-May-202023 KiB792502

install-shH A D13-May-202015 KiB519337

missingH A D13-May-20206.7 KiB216143

README.md

1# ifuse
2
3*A fuse filesystem implementation to access the contents of iOS devices.*
4
5## Features
6
7This project allows mounting various directories of an iOS device locally using
8the [FUSE file system interface](https://github.com/libfuse/libfuse).
9
10Some key features are:
11
12- **Media**: Mount media directory of an iOS device locally
13- **Apps**: Mount sandbox container or document directory of an app
14- **Jailbreak**: Mount root filesystem on jailbroken devices *(requires AFC2 service)*
15- **Browse**: Allows to retrieve a list of installed file-sharing enabled apps
16- **Implementation**: Uses [libimobiledevice](https://github.com/libimobiledevice/libimobiledevice) for communication with the device
17
18## Installation / Getting started
19
20### Debian / Ubuntu Linux
21
22First install all required dependencies and build tools:
23```shell
24sudo apt-get install \
25	build-essential \
26	checkinstall \
27	git \
28	autoconf \
29	automake \
30	libtool-bin \
31	libplist-dev \
32	libimobiledevice-dev \
33	libfuse-dev \
34	usbmuxd
35```
36
37Then clone the actual project repository:
38```shell
39git clone https://github.com/libimobiledevice/ifuse.git
40cd ifuse
41```
42
43Now you can build and install it:
44```shell
45./autogen.sh
46make
47sudo make install
48```
49
50### Setting up FUSE
51
52Note that on some systems, you may have to load the `fuse` kernel
53module first and to ensure that you are a member of the `fuse` group:
54
55```shell
56sudo modprobe fuse
57sudo adduser $USER fuse
58```
59
60You can check your membership of the `fuse` group with:
61
62```shell
63id | grep fuse && echo yes! || echo not yet...
64```
65
66If you have just added yourself, you will need to logout and log back
67in for the group change to become visible.
68
69## Usage
70
71To mount the media partition from the device run:
72```shell
73ifuse <mountpoint>
74```
75
76**HINT:** *If you mount your device as regular user, the system might complain that
77the file `/etc/fuse.conf` is not readable. It means you do not belong to the
78`fuse` group (see below).*
79
80To unmount as a regular user you must run:
81```shell
82fusermount -u <mountpoint>
83```
84
85By default, ifuse (via the AFC protocol) gives access to the `/var/root/Media/`
86chroot on the device (containing music/pictures). This is the right and safe
87way to access the device. However, if the device has been jailbroken, a full
88view of the device's filesystem might be available using the following command
89when mounting:
90```shell
91ifuse --root <mountpoint>
92```
93
94Note that only older jailbreak software installed the necessary AFC2 service on
95the device to enable root filesystem usage. For instance  blackra1n does not
96install it and thus does not enable root filesystem access by default!
97Use with care as the AFC protocol was not made to access the root filesystem.
98
99If using libimobiledevice >= 1.1.0, ifuse can also be used with the iTunes
100file/document sharing feature. It allows you to exchange files with an
101application on the device directly through it's documents folder by specifing
102the application identifier like this:
103```shell
104ifuse --documents <appid> <mountpoint>
105```
106
107The following example mounts the documents folder of the VLC app to `/mnt`:
108```shell
109ifuse --documents org.videolan.vlc-ios /mnt
110```
111
112It is also possible to mount the sandboxed root folder of an application
113using the `--container` parameter:
114```shell
115ifuse --container <appid> <mountpoint>
116```
117
118The `<appid>` (bundle identifier) of an app can be obtained using:
119```shell
120ifuse --list-apps
121```
122
123Please consult the usage information or manual page for a full documentation of
124available command line options:
125```shell
126ifuse --help
127man ifuse
128```
129
130## Contributing
131
132We welcome contributions from anyone and are grateful for every pull request!
133
134If you'd like to contribute, please fork the `master` branch, change, commit and
135send a pull request for review. Once approved it can be merged into the main
136code base.
137
138If you plan to contribute larger changes or a major refactoring, please create a
139ticket first to discuss the idea upfront to ensure less effort for everyone.
140
141Please make sure your contribution adheres to:
142* Try to follow the code style of the project
143* Commit messages should describe the change well without being to short
144* Try to split larger changes into individual commits of a common domain
145* Use your real name and a valid email address for your commits
146
147We are still working on the guidelines so bear with us!
148
149## Links
150
151* Homepage: https://libimobiledevice.org/
152* Repository: https://git.libimobiledevice.org/ifuse.git
153* Repository (Mirror): https://github.com/libimobiledevice/ifuse.git
154* Issue Tracker: https://github.com/libimobiledevice/ifuse/issues
155* Mailing List: https://lists.libimobiledevice.org/mailman/listinfo/libimobiledevice-devel
156* Twitter: https://twitter.com/libimobiledev
157
158## License
159
160This software is licensed under the [GNU Lesser General Public License v2.1](https://www.gnu.org/licenses/lgpl-2.1.en.html),
161also included in the repository in the `COPYING` file.
162
163## Credits
164
165Apple, iPhone, iPad, iPod, iPod Touch, Apple TV, Apple Watch, Mac, iOS,
166iPadOS, tvOS, watchOS, and macOS are trademarks of Apple Inc.
167
168This project is an independent software application and has not been authorized,
169sponsored, or otherwise approved by Apple Inc.
170
171README Updated on: 2020-06-13
172