1bup-fuse(1) bup-fuse(1)
2
3
4
6 bup-fuse - mount a bup repository as a filesystem
7
9 bup fuse [-d] [-f] [-o] <mountpoint>
10
12 bup fuse opens a bup repository and exports it as a fuse(7) userspace
13 filesystem.
14
15 This feature is only available on systems (such as Linux) which support
16 FUSE.
17
18 WARNING: bup fuse is still experimental and does not enforce any file
19 permissions! All files will be readable by all users.
20
21 When you're done accessing the mounted fuse filesystem, you should un‐
22 mount it with umount(8).
23
25 -d, --debug
26 run in the foreground and print FUSE debug information for each
27 request.
28
29 -f, --foreground
30 run in the foreground and exit only when the filesystem is un‐
31 mounted.
32
33 -o, --allow-other
34 permit other users to access the filesystem. Necessary for ex‐
35 porting the filesystem via Samba, for example.
36
37 --meta report some of the original metadata (when available) for the
38 mounted paths (currently the uid, gid, mode, and timestamps).
39 Without this, only generic values will be presented. This op‐
40 tion is not yet enabled by default because it may negatively af‐
41 fect performance, and note that any timestamps before 1970-01-01
42 UTC (i.e. before the Unix epoch) will be presented as 1970-01-01
43 UTC.
44
45 -v, --verbose
46 increase verbosity (can be used more than once).
47
49 rm -rf /tmp/buptest
50 mkdir /tmp/buptest
51 sudo bup fuse -d /tmp/buptest
52 ls /tmp/buptest/*/latest
53 ...
54 umount /tmp/buptest
55
57 fuse(7), fusermount(1), bup-ls(1), bup-ftp(1), bup-restore(1),
58 bup-web(1)
59
61 Part of the bup(1) suite.
62
64 Avery Pennarun <apenwarr@gmail.com>.
65
66
67
68Bup 0.29.1 2017-03-26 bup-fuse(1)