This file is indexed.

/usr/share/doc/bup/bup-fuse.html is in bup-doc 0.29-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta http-equiv="Content-Style-Type" content="text/css" />
  <meta name="generator" content="pandoc" />
  <meta name="author" content="Avery Pennarun apenwarr@gmail.com" />
  <meta name="date" content="2017-04-01" />
  <title>bup-fuse(1) Bup debian/0.29-3</title>
  <style type="text/css">code{white-space: pre;}</style>
</head>
<body>
<div id="header">
<h1 class="title">bup-fuse(1) Bup debian/0.29-3</h1>
<h2 class="author">Avery Pennarun <a href="mailto:apenwarr@gmail.com">apenwarr@gmail.com</a></h2>
<h3 class="date">2017-04-01</h3>
</div>
<h1 id="name">NAME</h1>
<p>bup-fuse - mount a bup repository as a filesystem</p>
<h1 id="synopsis">SYNOPSIS</h1>
<p>bup fuse [-d] [-f] [-o] &lt;mountpoint&gt;</p>
<h1 id="description">DESCRIPTION</h1>
<p><code>bup fuse</code> opens a bup repository and exports it as a <code>fuse</code>(7) userspace filesystem.</p>
<p>This feature is only available on systems (such as Linux) which support FUSE.</p>
<p><strong>WARNING</strong>: bup fuse is still experimental and does not enforce any file permissions! All files will be readable by all users.</p>
<p>When you're done accessing the mounted fuse filesystem, you should unmount it with <code>umount</code>(8).</p>
<h1 id="options">OPTIONS</h1>
<dl>
<dt>-d, --debug</dt>
<dd>run in the foreground and print FUSE debug information for each request.
</dd>
<dt>-f, --foreground</dt>
<dd>run in the foreground and exit only when the filesystem is unmounted.
</dd>
<dt>-o, --allow-other</dt>
<dd>permit other users to access the filesystem. Necessary for exporting the filesystem via Samba, for example.
</dd>
<dt>--meta</dt>
<dd>report some of the original metadata (when available) for the mounted paths (currently the uid, gid, mode, and timestamps). Without this, only generic values will be presented. This option is not yet enabled by default because it may negatively affect performance, and note that any timestamps before 1970-01-01 UTC (i.e. before the Unix epoch) will be presented as 1970-01-01 UTC.
</dd>
<dt>-v, --verbose</dt>
<dd>increase verbosity (can be used more than once).
</dd>
</dl>
<h1 id="examples">EXAMPLES</h1>
<pre><code>rm -rf /tmp/buptest
mkdir /tmp/buptest
sudo bup fuse -d /tmp/buptest
ls /tmp/buptest/*/latest
...
umount /tmp/buptest</code></pre>
<h1 id="see-also">SEE ALSO</h1>
<p><code>fuse</code>(7), <code>fusermount</code>(1), <code>bup-ls</code>(1), <code>bup-ftp</code>(1), <code>bup-restore</code>(1), <code>bup-web</code>(1)</p>
<h1 id="bup">BUP</h1>
<p>Part of the <code>bup</code>(1) suite.</p>
</body>
</html>