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

Update README.md #186

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ Example for Linux:
sudo apt update
sudo apt install fuse libfuse3-dev bzip2 libbz2-dev cmake gcc-c++ git libattr1-dev zlib1g-dev
```
If you get an error at the above step complaining about "c+" not found or similar, it seems your distro does not like installing c++ using regular apt, so we use apt-get with quotes:
```
sudo apt-get install "c++"
```
Of course these commands depend on the Linux distribution.

Clone the repository:
Expand All @@ -64,6 +68,11 @@ Note that the driver uses FUSE 3.0 by default (required on 32-bit systems). If
you want do compile using FUSE 2.6, use `ccmake .` to change the option
`USE_FUSE3` to `OFF`.

Lastly, if running apfs-fuse directly in terminal returns command not recognized then it has not been added to path correctly, do this inside the apfs-fuse/build folder:
```
sudo cp -a . /usr/local/bin
```

### Mount a drive
```
apfs-fuse <device> <mount-directory>
Expand Down