mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-20 21:27:32 +00:00
updated freeBSD docs
With the now improved steps, I was able to build Borg on a vagrant image: % borg -V borg 1.0.0rc2.dev40+ngfb83f61
This commit is contained in:
parent
fdf1dd75dd
commit
1d4f591691
1 changed files with 11 additions and 10 deletions
|
@ -166,19 +166,20 @@ FUSE for OS X, which is available as a pre-release_.
|
||||||
|
|
||||||
FreeBSD
|
FreeBSD
|
||||||
++++++++
|
++++++++
|
||||||
|
Listed below are packages you will need to install |project_name|, its dependencies,
|
||||||
If you're using FreeBSD, you will need to install a package and load the fuse kernel module:
|
and commands to make fuse work for using the mount command.
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
$ sudo pkg install fusefs-libs
|
pkg install -y python3 openssl liblz4 fusefs-libs pkgconf
|
||||||
$ sudo kldload fuse
|
pkg install -y git
|
||||||
$ borg mount /mnt/backup::root-2013-08-02 /tmp/mymountpoint
|
python3.4 -m ensurepip # to install pip for Python3
|
||||||
$ ls /tmp/mymountpoint
|
To use the mount command:
|
||||||
bin boot etc lib lib64 mnt opt root sbin srv usr var
|
echo 'fuse_load="YES"' >> /boot/loader.conf
|
||||||
$ umount /tmp/mymountpoint
|
echo 'vfs.usermount=1' >> /etc/sysctl.conf
|
||||||
|
kldload fuse
|
||||||
|
sysctl vfs.usermount=1
|
||||||
|
|
||||||
|
|
||||||
Cygwin
|
Cygwin
|
||||||
++++++
|
++++++
|
||||||
|
|
Loading…
Reference in a new issue