ifuse

ifuseの使い方

タグ ifuse


概要

  • iPhoneやiPadを外部ストレージとしてマウントできるfuseベースのソフトウェア
  • osxで使用するにはmacFUSEのインストールが必要
  • GUIでファイルのiPhoneとのやり取りを行う際にはifunboxが使える

OSXへインストール

# githubからクローン
$ git clone https://github.com/libimobiledevice/ifuse.git
$ cd ifuse

# コンパイルとインストール
$ ./autogen.sh
$ make
$ sudo make install

APPの一覧の取得

$ ifuse --list-apps
"CFBundleIdentifier","CFBundleVersion","CFBundleDisplayName"
"com.crystalnix.ServerAuditor","3","Termius"
"com.sumo-digital.spyder","1455523","Spyder"
"com.doglobal.ESFileExplorer","1","ES File Explorer"
"com.google.chrome.ios","99.0.4844.59","Chrome"
"com.apple.mobilegarageband","5189","GarageBand"
"com.apple.Keynote","7357.0.149","Keynote"
...

APPのドキュメントフォルダーのマウント

$ ifuse --documents <appid> <mountpoint>

具体例; vlcの動画をtestフォルダにマウント

$ ifuse --documents org.videolan.vlc-ios test

参考