• home
  • about
  • 全ての投稿
  • ソフトウェア・ハードウェアの設定のまとめ
  • 分析関連のまとめ
  • ヘルスケア関連のまとめ
  • 生涯学習関連のまとめ

ifuse

date: 2022-03-26 excerpt: ifuseの使い方

tag: ifuseios


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

参考

  • libimobiledevice/ifuse


ifuseios Share Tweet