]> arthur.barton.de Git - bup.git/blob - Documentation/bup-fuse.1.md
add -o/--allow-other to bup-fuse
[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] [-o] <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 -o, --allow-other
37 :   permit other users to access the filesystem. Necessary for
38     exporting the filesystem via Samba, for example.
39
40 # EXAMPLE
41
42     rm -rf /tmp/buptest
43     mkdir /tmp/buptest
44     sudo bup fuse -d /tmp/buptest
45
46 # SEE ALSO
47
48 `fuse`(7), `fusermount`(1), `bup-ls`(1), `bup-ftp`(1)
49
50 # BUP
51
52 Part of the `bup`(1) suite.