File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,21 @@ go get github.com/jbenet/go-fuse-version/fuse-version
48
48
If you run into any problems installing FUSE or mounting IPFS, hop on IRC and
49
49
speak with us, or if you figure something new out, please add to this document!
50
50
51
+ #### FreeBSD
52
+ ``` sh
53
+ sudo pkg install fusefs-ext2
54
+ ```
55
+
56
+ Load the fuse kernel module:
57
+ ``` sh
58
+ sudo kldload fusefs
59
+ ```
60
+
61
+ To load automatically on boot:
62
+ ``` sh
63
+ sudo echo fusefs_load=" YES" >> /boot/loader.conf
64
+ ```
65
+
51
66
## Prepare mountpoints
52
67
53
68
By default ipfs uses ` /ipfs ` , ` /ipns ` and ` /mfs ` directories for mounting, this can be
@@ -107,6 +122,11 @@ ipfs config --json Mounts.FuseAllowOther true
107
122
ipfs daemon --mount
108
123
```
109
124
125
+ If using FreeBSD, it is necessary to run ` ipfs ` as root:
126
+ ``` sh
127
+ sudo HOME=$HOME ipfs daemon --mount
128
+ ```
129
+
110
130
## MFS mountpoint
111
131
112
132
Kubo v0.35.0 and later supports mounting the MFS (Mutable File System) root as
You can’t perform that action at this time.
0 commit comments