Skip to content

Commit

Permalink
add MacOS instruction (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey-Svetlichny authored Jan 4, 2025
1 parent 297a7b3 commit f141c1c
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ This variant of adbfs works even WITHOUT having root access (busybox) on your ph
Instructions:
=============

You will need `libfuse-dev` and `adb`. You will also need `build-essential`, `git`, and `pkg-config`. On Ubuntu:

## Ubuntu

You will need `libfuse-dev` and `adb`. You will also need `build-essential`, `git`, and `pkg-config`.

sudo apt-get install libfuse-dev android-tools-adb
sudo apt-get install build-essential git pkg-config

Expand Down Expand Up @@ -35,6 +37,36 @@ If you want to trigger a media rescan after every operation, use the option `-o

Have fun!

## MacOS

Install adb and fuse

brew install --cask android-platform-tools
brew install --cask macfuse

Check access to phone through adb

adb devices

Clone the repository:

git clone https://github.com/spion/adbfs-rootless.git
cd adbfs-rootless

Build:

make

Create a mount point if needed (e.g. in your home directory):

mkdir ~/droid

Mount your device (You will be asked and have to allow fuse extension):

./adbfs ~/droid

Have fun!

## Troubleshooting

### Error: device not found
Expand Down

0 comments on commit f141c1c

Please sign in to comment.