Skip to content
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

Open
b-747 opened this issue Nov 30, 2021 · 3 comments
Open

Where I can find iFuse MacOS M1 binary ? #76

b-747 opened this issue Nov 30, 2021 · 3 comments

Comments

@b-747
Copy link

b-747 commented Nov 30, 2021

Where I can find iFuse MacOS M1 binary ?

@runil
Copy link

runil commented Jan 9, 2022

Maybe you can compile?

@morishin
Copy link

brew install ifuse failed. But I can compile ifuse on M1 macOS.

You must install some dependencies before installing ifuse.

# 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>

@SuCicada
Copy link

SuCicada commented Feb 5, 2023

if you meet

configure: error: OpenSSL support explicitly requested but OpenSSL could not be found

try this:

brew info openssl

and then follow its mension

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants