-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where I can find iFuse MacOS M1 binary ? #76
Comments
Maybe you can compile? |
You must install some dependencies before installing # Set pkg-config path
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
# or export PKG_CONFIG_PATH=/usr/lib/pkgconfig
# Install libplist
cd ~ \
&& git clone https://github.com/libimobiledevice/libplist.git \
&& cd libplist \
&& ./autogen.sh \
&& make \
&& sudo make install \
&& rm -rf ~/libplist
# Install libimobiledevice-glue
cd ~ \
&& git clone https://github.com/libimobiledevice/libimobiledevice-glue.git \
&& cd libimobiledevice-glue \
&& ./autogen.sh \
&& make \
&& sudo make install \
&& rm -rf ~/libimobiledevice-glue
# Install libusbmuxd
cd ~ \
&& git clone https://github.com/libimobiledevice/libusbmuxd.git \
&& cd libusbmuxd \
&& ./autogen.sh \
&& make \
&& sudo make install \
&& rm -rf ~/libusbmuxd
# Install libimobiledevice
cd ~ \
&& git clone https://github.com/libimobiledevice/libimobiledevice.git \
&& cd libimobiledevice \
&& ./autogen.sh \
&& make \
&& sudo make install \
&& rm -rf ~/libimobiledevice
# Install ifuse
cd ~ \
&& git clone https://github.com/libimobiledevice/ifuse.git \
&& cd ifuse \
&& ./autogen.sh \
&& make \
&& sudo make install \
&& rm -rf ~/ifuse
# Use ifuse
ifuse -h
Usage: ifuse MOUNTPOINT [OPTIONS]
Mount directories of an iOS device locally using fuse.
OPTIONS:
-o opt,[opt...] mount options
-u, --udid UDID mount specific device by UDID
-n, --network connect to network device
-h, --help print usage information
-V, --version print version
-d, --debug enable libimobiledevice communication debugging
--documents APPID mount 'Documents' folder of app identified by APPID
--container APPID mount sandbox root of an app identified by APPID
--list-apps list installed apps that have file sharing enabled
--root mount root file system (jailbroken device required)
Example:
$ ifuse /media/iPhone --root
This mounts the root filesystem of the first attached device on
this computer in the directory /media/iPhone.
Homepage: <https://libimobiledevice.org>
Bug Reports: <https://github.com/libimobiledevice/ifuse/issues> |
if you meet
try this:
and then follow its mension |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where I can find iFuse MacOS M1 binary ?
The text was updated successfully, but these errors were encountered: