Coder Social home page Coder Social logo

Comments (3)

morishin avatar morishin commented on May 24, 2024 1

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>

from ifuse.

runil avatar runil commented on May 24, 2024

Maybe you can compile?

from ifuse.

SuCicada avatar SuCicada commented on May 24, 2024

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

from ifuse.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.