blob: d1d09966acfc7eed5a44dee4f548112f2fefb380 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
[
{ type: install
message: <<EOM
In order to mount locally a remote archive or an entire repository as a FUSE
filesystem, it is required to load fusefs(5) module:
# kldload fusefs
To load the module at boot time, add fusefs(5) module
to /etc/rc.conf by running:
# sysrc kld_list+=fusefs
Also, if you plan to mount restic repositories as non root user, you need to run
# sysctl vfs.usermount=1
and add the line
vfs.usermount=1
to /etc/sysctl.conf to ensure the setting is applied at boot time.
EOM
}
]
|