Skip to content
Snippets Groups Projects
Unverified Commit e491ee98 authored by Andrew Gillis's avatar Andrew Gillis Committed by GitHub
Browse files

Update fuse docs with FreeBSD specifics (#10820)

Closes #8846
parent 8f87a699
No related branches found
No related tags found
No related merge requests found
......@@ -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
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment