blob: 53026ba06381625989d76bcbd522d6ed5306f5db (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
.TH "ifuse" 1
.SH NAME
ifuse \- Mount directories of an iOS device locally using fuse.
.SH SYNOPSIS
.B ifuse MOUNTPOINT [OPTIONS]
.SH DESCRIPTION
Mount directories of an iOS device locally using fuse. By default the media
directory is mounted, options allow to also mount the sandbox container of an
app, an app's documents folder or even the root filesystem on jailbroken
devices.
Example:
$ ifuse /media/iPhone \-\-root
This mounts the root filesystem of the first attached device on
this computer in the directory /media/iPhone.
Regular users are able to unmount fuse mounts using "fusermount -u MOUNTPOINT".
.SH OPTIONS
.TP
.B \-o opt,[opt...]
mount options.
.TP
.B \-u, \-\-udid UDID
mount specific device by UDID.
.TP
.B \-n, \-\-network
connect to network device.
.TP
.B \-h, \-\-help
print usage information.
.TP
.B \-V, \-\-version
print version.
.TP
.B \-d, \-\-debug
enable libimobiledevice communication debugging.
.TP
.B \-\-documents APPID
mount 'Documents' folder of app identified by APPID.
.TP
.B \-\-container APPID
mount sandbox root of an app identified by APPID.
.TP
.B \-\-list-apps
list installed apps that have file sharing enabled.
.TP
.B \-\-root
mount root file system (jailbroken device required).
.SH AUTHOR
Julien Lavergne (man page)
Martin Szulecki
Matt Colyer
Nikias Bassen
.SH SEE ALSO
fusermount(1)
.SH ON THE WEB
https://libimobiledevice.org
https://github.com/libimobiledevice/ifuse
|