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:
jungle-boogie 2016-02-20 14:12:57 -08:00
parent fdf1dd75dd
commit 1d4f591691
1 changed files with 11 additions and 10 deletions

View File

@ -166,19 +166,20 @@ FUSE for OS X, which is available as a pre-release_.
FreeBSD
++++++++
If you're using FreeBSD, you will need to install a package and load the fuse kernel module:
Listed below are packages you will need to install |project_name|, its dependencies,
and commands to make fuse work for using the mount command.
::
$ sudo pkg install fusefs-libs
$ sudo kldload fuse
$ borg mount /mnt/backup::root-2013-08-02 /tmp/mymountpoint
$ ls /tmp/mymountpoint
bin boot etc lib lib64 mnt opt root sbin srv usr var
$ umount /tmp/mymountpoint
pkg install -y python3 openssl liblz4 fusefs-libs pkgconf
pkg install -y git
python3.4 -m ensurepip # to install pip for Python3
To use the mount command:
echo 'fuse_load="YES"' >> /boot/loader.conf
echo 'vfs.usermount=1' >> /etc/sysctl.conf
kldload fuse
sysctl vfs.usermount=1
Cygwin
++++++