LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

ifuse

mounts iOS device filesystems via FUSE

TLDR

Mount iOS device
$ ifuse [/mnt/iphone]
copy
Mount app documents
$ ifuse --documents [com.app.id] [/mnt/app]
copy
Mount specific device
$ ifuse -u [udid] [/mnt/device]
copy
Unmount
$ fusermount -u [/mnt/iphone]
copy

SYNOPSIS

ifuse [options] mountpoint

DESCRIPTION

ifuse mounts iOS device filesystems via FUSE. It provides access to device storage, app documents, and containers.The tool requires device pairing and uses AFC protocol. It enables file transfer without iTunes or third-party apps.

PARAMETERS

MOUNTPOINT

Directory to mount on.
-u UDID
Target device.
--documents APPID
Mount app documents.
--container APPID
Mount app container.
-o OPTIONS
FUSE options.
--help
Display help information.

INSTALL

sudo apt install ifuse
copy
sudo dnf install ifuse
copy
sudo pacman -S ifuse
copy
sudo apk add ifuse
copy
sudo zypper install ifuse
copy
brew install ifuse
copy
nix profile install nixpkgs#ifuse
copy

CAVEATS

Part of libimobiledevice. Device must be paired. Limited to accessible areas.

HISTORY

ifuse is part of libimobiledevice for iOS filesystem access on Linux.

SEE ALSO

Copied to clipboard
Kai