freebsd-ports/archivers/py-borgbackup/pkg-message
Steve Wills 1b9639162e archivers/py-borgbackup: Update to 1.1.7
PR:		231079
Submitted by:	jjuanino@gmail.com (maintainer)
2018-09-02 16:14:23 +00:00

22 lines
461 B
Text

In order to mount locally a remote archive or an entire repository as a FUSE
filesystem, it is required to load fuse module:
# kldload fuse
To load the module at boot time, add
fuse_load="YES"
to /boot/loader.conf by running:
sysrc fuse_load="YES"
Also, if you plan to mount borg 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 loaded at boot time.