Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,25 @@ in for the group change to become visible.

## Usage

To mount the media partition from the device run:
To pair the iPhone device to your computer, plug in your iPhone to your computer, and return to your iPhone. Unlock your iPhone, and when prompted, trust your computer and enter your passcode.

Then, use the following command to pair your device to your computer
```shell
idevice pair
```

To mount the media partition from the device, run the following command:
```shell
ifuse <mountpoint>
```

Example command that allows you to create a related directory and then mount the iPhone's file system to it.
```shell
mkdir ~/temp/iphone

ifuse ~/temp/iphone
```

**HINT:** *If you mount your device as regular user, the system might complain that
the file `/etc/fuse.conf` is not readable. It means you do not belong to the
`fuse` group (see below).*
Expand Down