Skip to content
Merged
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
20 changes: 20 additions & 0 deletions docs/fuse.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,21 @@ go get github.com/jbenet/go-fuse-version/fuse-version
If you run into any problems installing FUSE or mounting IPFS, hop on IRC and
speak with us, or if you figure something new out, please add to this document!

#### FreeBSD
```sh
sudo pkg install fusefs-ext2
```

Load the fuse kernel module:
```sh
sudo kldload fusefs
```

To load automatically on boot:
```sh
sudo echo fusefs_load="YES" >> /boot/loader.conf
```

## Prepare mountpoints

By default ipfs uses `/ipfs`, `/ipns` and `/mfs` directories for mounting, this can be
Expand Down Expand Up @@ -107,6 +122,11 @@ ipfs config --json Mounts.FuseAllowOther true
ipfs daemon --mount
```

If using FreeBSD, it is necessary to run `ipfs` as root:
```sh
sudo HOME=$HOME ipfs daemon --mount
```

## MFS mountpoint

Kubo v0.35.0 and later supports mounting the MFS (Mutable File System) root as
Expand Down