]> arthur.barton.de Git - bup.git/blob - Documentation/bup-fuse.1.md
af02b777df75996cfcd81fc74dd15636d19cb559
[bup.git] / Documentation / bup-fuse.1.md
1 % bup-fuse(1) Bup %BUP_VERSION%
2 % Avery Pennarun <apenwarr@gmail.com>
3 % %BUP_DATE%
4
5 # NAME
6
7 bup fuse - mount a bup repository as a filesystem
8
9 # SYNOPSIS
10
11 bup fuse [-d] [-f] <mountpoint>
12
13 # DESCRIPTION
14
15 `bup fuse` opens a bup repository and exports it as a
16 `fuse`(7) userspace filesystem.
17
18 This feature is only available on systems (such as Linux)
19 which support FUSE.
20
21 **WARNING**: bup fuse is still experimental and does not
22 enforce any file permissions!  All files will be readable
23 by all users.
24
25
26 # OPTIONS
27
28 -d, --debug
29 :   run in the foreground and print FUSE debug information
30     for each request.
31
32 -f, --foreground
33 :   run in the foreground and exit only when the filesystem
34     is unmounted.
35
36
37 # EXAMPLE
38
39     rm -rf /tmp/buptest
40     mkdir /tmp/buptest
41     sudo bup fuse -d /tmp/buptest
42
43 # SEE ALSO
44
45 `fuse`(7), `fusermount`(1), `bup-ls`(1), `bup-ftp`(1)
46
47 # BUP
48
49 Part of the `bup`(1) suite.