]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - docs/frontends/CLI.rst
e91632f579b5843e408c4228c88225ce0ddce3ed
[tahoe-lafs/tahoe-lafs.git] / docs / frontends / CLI.rst
1 .. -*- coding: utf-8-with-signature -*-
2
3 ===========================
4 The Tahoe-LAFS CLI commands
5 ===========================
6
7 1.  `Overview`_
8 2.  `CLI Command Overview`_
9
10     1.  `Unicode Support`_
11
12 3.  `Node Management`_
13 4.  `Filesystem Manipulation`_
14
15     1.  `Starting Directories`_
16     2.  `Command Syntax Summary`_
17     3.  `Command Examples`_
18
19 5.  `Storage Grid Maintenance`_
20 6.  `Debugging`_
21
22
23 Overview
24 ========
25
26 Tahoe-LAFS provides a single executable named "``tahoe``", which can be used to
27 create and manage client/server nodes, manipulate the filesystem, and perform
28 several debugging/maintenance tasks.
29
30 This executable lives in the source tree at "``bin/tahoe``". Once you've done a
31 build (by running "``make``" or "``python setup.py build``"), ``bin/tahoe`` can
32 be run in-place: if it discovers that it is being run from within a Tahoe-LAFS
33 source tree, it will modify ``sys.path`` as necessary to use all the source code
34 and dependent libraries contained in that tree.
35
36 If you've installed Tahoe-LAFS (using "``make install``" or
37 "``python setup.py install``", or by installing a binary package), then the
38 ``tahoe`` executable will be available somewhere else, perhaps in
39 ``/usr/bin/tahoe``. In this case, it will use your platform's normal
40 PYTHONPATH search path to find the Tahoe-LAFS code and other libraries.
41
42
43 CLI Command Overview
44 ====================
45
46 The "``tahoe``" tool provides access to three categories of commands.
47
48 * node management: create a client/server node, start/stop/restart it
49 * filesystem manipulation: list files, upload, download, unlink, rename
50 * debugging: unpack cap-strings, examine share files
51
52 To get a list of all commands, just run "``tahoe``" with no additional
53 arguments. "``tahoe --help``" might also provide something useful.
54
55 Running "``tahoe --version``" will display a list of version strings, starting
56 with the "allmydata" module (which contains the majority of the Tahoe-LAFS
57 functionality) and including versions for a number of dependent libraries,
58 like Twisted, Foolscap, pycryptopp, and zfec. "``tahoe --version-and-path``"
59 will also show the path from which each library was imported.
60
61 On Unix systems, the shell expands filename wildcards (``'*'`` and ``'?'``)
62 before the program is able to read them, which may produce unexpected results
63 for many ``tahoe`` comands. We recommend, if you use wildcards, to start the
64 path with "``./``", for example "``tahoe cp -r ./* somewhere:``". This
65 prevents the expanded filename from being interpreted as an option or as an
66 alias, allowing filenames that start with a dash or contain colons to be
67 handled correctly.
68
69 On Windows, a single letter followed by a colon is treated as a drive
70 specification rather than an alias (and is invalid unless a local path is
71 allowed in that context). Wildcards cannot be used to specify multiple
72 filenames to ``tahoe`` on Windows.
73
74 Unicode Support
75 ---------------
76
77 As of Tahoe-LAFS v1.7.0 (v1.8.0 on Windows), the ``tahoe`` tool supports
78 non-ASCII characters in command lines and output. On Unix, the command-line
79 arguments are assumed to use the character encoding specified by the
80 current locale (usually given by the ``LANG`` environment variable).
81
82 If a name to be output contains control characters or characters that
83 cannot be represented in the encoding used on your terminal, it will be
84 quoted. The quoting scheme used is similar to `POSIX shell quoting`_: in
85 a "double-quoted" string, backslashes introduce escape sequences (like
86 those in Python strings), but in a 'single-quoted' string all characters
87 stand for themselves. This quoting is only used for output, on all
88 operating systems. Your shell interprets any quoting or escapes used on
89 the command line.
90
91 .. _`POSIX shell quoting`: http://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
92
93
94 Node Management
95 ===============
96
97 "``tahoe create-node [NODEDIR]``" is the basic make-a-new-node command. It
98 creates a new directory and populates it with files that will allow the
99 "``tahoe start``" command to use it later on. This command creates nodes that
100 have client functionality (upload/download files), web API services
101 (controlled by the '[node]web.port' configuration), and storage services
102 (unless ``--no-storage`` is specified).
103
104 NODEDIR defaults to ``~/.tahoe/`` , and newly-created nodes default to
105 publishing a web server on port 3456 (limited to the loopback interface, at
106 127.0.0.1, to restrict access to other programs on the same host). All of the
107 other "``tahoe``" subcommands use corresponding defaults (with the exception
108 that "``tahoe run``" defaults to running a node in the current directory).
109
110 "``tahoe create-client [NODEDIR]``" creates a node with no storage service.
111 That is, it behaves like "``tahoe create-node --no-storage [NODEDIR]``".
112 (This is a change from versions prior to v1.6.0.)
113
114 "``tahoe create-introducer [NODEDIR]``" is used to create the Introducer node.
115 This node provides introduction services and nothing else. When started, this
116 node will produce a ``private/introducer.furl`` file, which should be
117 published to all clients.
118
119 "``tahoe create-key-generator [NODEDIR]``" is used to create a special
120 "key-generation" service, which allows a client to offload their RSA key
121 generation to a separate process. Since RSA key generation takes several
122 seconds, and must be done each time a directory is created, moving it to a
123 separate process allows the first process (perhaps a busy web-API server) to
124 continue servicing other requests. The key generator exports a FURL that can
125 be copied into a node to enable this functionality.
126
127 "``tahoe run [NODEDIR]``" will start a previously-created node in the foreground.
128
129 "``tahoe start [NODEDIR]``" will launch a previously-created node. It will
130 launch the node into the background, using the standard Twisted "``twistd``"
131 daemon-launching tool. On some platforms (including Windows) this command is
132 unable to run a daemon in the background; in that case it behaves in the
133 same way as "``tahoe run``".
134
135 "``tahoe stop [NODEDIR]``" will shut down a running node.
136
137 "``tahoe restart [NODEDIR]``" will stop and then restart a running node. This
138 is most often used by developers who have just modified the code and want to
139 start using their changes.
140
141
142 Filesystem Manipulation
143 =======================
144
145 These commands let you exmaine a Tahoe-LAFS filesystem, providing basic
146 list/upload/download/unlink/rename/mkdir functionality. They can be used as
147 primitives by other scripts. Most of these commands are fairly thin wrappers
148 around web-API calls, which are described in `<webapi.rst>`__.
149
150 By default, all filesystem-manipulation commands look in ``~/.tahoe/`` to
151 figure out which Tahoe-LAFS node they should use. When the CLI command makes
152 web-API calls, it will use ``~/.tahoe/node.url`` for this purpose: a running
153 Tahoe-LAFS node that provides a web-API port will write its URL into this
154 file. If you want to use a node on some other host, just create ``~/.tahoe/``
155 and copy that node's web-API URL into this file, and the CLI commands will
156 contact that node instead of a local one.
157
158 These commands also use a table of "aliases" to figure out which directory
159 they ought to use a starting point. This is explained in more detail below.
160
161 Starting Directories
162 --------------------
163
164 As described in `docs/architecture.rst <../architecture.rst>`__, the
165 Tahoe-LAFS distributed filesystem consists of a collection of directories
166 and files, each of which has a "read-cap" or a "write-cap" (also known as
167 a URI). Each directory is simply a table that maps a name to a child file
168 or directory, and this table is turned into a string and stored in a
169 mutable file. The whole set of directory and file "nodes" are connected
170 together into a directed graph.
171
172 To use this collection of files and directories, you need to choose a
173 starting point: some specific directory that we will refer to as a
174 "starting directory".  For a given starting directory, the
175 "``ls [STARTING_DIR]``" command would list the contents of this directory,
176 the "``ls [STARTING_DIR]/dir1``" command would look inside this directory
177 for a child named "``dir1``" and list its contents,
178 "``ls [STARTING_DIR]/dir1/subdir2``" would look two levels deep, etc.
179
180 Note that there is no real global "root" directory, but instead each
181 starting directory provides a different, possibly overlapping
182 perspective on the graph of files and directories.
183
184 Each Tahoe-LAFS node remembers a list of starting points, called "aliases",
185 which are short Unicode strings that stand in for a directory read- or
186 write- cap. They are stored (encoded as UTF-8) in the file
187 ``NODEDIR/private/aliases`` .  If you use the command line "``tahoe ls``"
188 without any "[STARTING_DIR]" argument, then it will use the default alias,
189 which is ``tahoe:``, therefore "``tahoe ls``" has the same effect as
190 "``tahoe ls tahoe:``".  The same goes for the other commands that can
191 reasonably use a default alias: ``get``, ``put``, ``mkdir``, ``mv``, and
192 ``rm``.
193
194 For backwards compatibility with Tahoe-LAFS v1.0, if the ``tahoe:`` alias
195 is not found in ``~/.tahoe/private/aliases``, the CLI will use the contents
196 of ``~/.tahoe/private/root_dir.cap`` instead. Tahoe-LAFS v1.0 had only a
197 single starting point, and stored it in this ``root_dir.cap`` file, so v1.1
198 and later will use it if necessary. However, once you've set a ``tahoe:``
199 alias with "``tahoe set-alias``", that will override anything in the old
200 ``root_dir.cap`` file.
201
202 The Tahoe-LAFS CLI commands use the same path syntax as ``scp`` and
203 ``rsync`` -- an optional ``ALIAS:`` prefix, followed by the pathname or
204 filename. Some commands (like "``tahoe cp``") use the lack of an alias to
205 mean that you want to refer to a local file, instead of something from the
206 Tahoe-LAFS filesystem. [TODO] Another way to indicate this is to start
207 the pathname with a dot, slash, or tilde.
208
209 When you're dealing a single starting directory, the ``tahoe:`` alias is
210 all you need. But when you want to refer to something that isn't yet
211 attached to the graph rooted at that starting directory, you need to
212 refer to it by its capability. The way to do that is either to use its
213 capability directory as an argument on the command line, or to add an
214 alias to it, with the "``tahoe add-alias``" command. Once you've added an
215 alias, you can use that alias as an argument to commands.
216
217 The best way to get started with Tahoe-LAFS is to create a node, start it,
218 then use the following command to create a new directory and set it as your
219 ``tahoe:`` alias::
220
221  tahoe create-alias tahoe
222
223 After that you can use "``tahoe ls tahoe:``" and
224 "``tahoe cp local.txt tahoe:``", and both will refer to the directory that
225 you've just created.
226
227 SECURITY NOTE: For users of shared systems
228 ``````````````````````````````````````````
229
230 Another way to achieve the same effect as the above "``tahoe create-alias``"
231 command is::
232
233  tahoe add-alias tahoe `tahoe mkdir`
234
235 However, command-line arguments are visible to other users (through the
236 ``ps`` command or ``/proc`` filesystem, or the Windows Process Explorer tool),
237 so if you are using a Tahoe-LAFS node on a shared host, your login neighbors
238 will be able to see (and capture) any directory caps that you set up with the
239 "``tahoe add-alias``" command.
240
241 The "``tahoe create-alias``" command avoids this problem by creating a new
242 directory and putting the cap into your aliases file for you. Alternatively,
243 you can edit the ``NODEDIR/private/aliases`` file directly, by adding a line
244 like this::
245
246  fun: URI:DIR2:ovjy4yhylqlfoqg2vcze36dhde:4d4f47qko2xm5g7osgo2yyidi5m4muyo2vjjy53q4vjju2u55mfa
247
248 By entering the dircap through the editor, the command-line arguments are
249 bypassed, and other users will not be able to see them. Once you've added the
250 alias, no other secrets are passed through the command line, so this
251 vulnerability becomes less significant: they can still see your filenames and
252 other arguments you type there, but not the caps that Tahoe-LAFS uses to permit
253 access to your files and directories.
254
255
256 Command Syntax Summary
257 ----------------------
258
259 ``tahoe add-alias ALIAS[:] DIRCAP``
260
261 ``tahoe create-alias ALIAS[:]``
262
263 ``tahoe list-aliases``
264
265 ``tahoe mkdir``
266
267 ``tahoe mkdir PATH``
268
269 ``tahoe ls [PATH]``
270
271 ``tahoe webopen [PATH]``
272
273 ``tahoe put [--mutable] [FROMLOCAL|-]``
274
275 ``tahoe put [--mutable] FROMLOCAL|- TOPATH``
276
277 ``tahoe put [FROMLOCAL|-] mutable-file-writecap``
278
279 ``tahoe get FROMPATH [TOLOCAL|-]``
280
281 ``tahoe cp [-r] FROMPATH TOPATH``
282
283 ``tahoe rm PATH``
284
285 ``tahoe mv FROMPATH TOPATH``
286
287 ``tahoe ln FROMPATH TOPATH``
288
289 ``tahoe backup FROMLOCAL TOPATH``
290
291 In these summaries, ``PATH``, ``TOPATH`` or ``FROMPATH`` can be one of:
292
293 * ``[SUBDIRS/]FILENAME`` for a path relative to the default ``tahoe:`` alias;
294 * ``ALIAS:[SUBDIRS/]FILENAME`` for a path relative to another alias;
295 * ``DIRCAP/[SUBDIRS/]FILENAME`` or ``DIRCAP:./[SUBDIRS/]FILENAME`` for a path
296   relative to a directory cap.
297
298 See `CLI Command Overview`_ above for information on using wildcards with
299 local paths, and different treatment of colons between Unix and Windows.
300
301 ``FROMLOCAL`` or ``TOLOCAL`` is a path in the local filesystem.
302
303
304 Command Examples
305 ----------------
306
307 ``tahoe add-alias ALIAS[:] DIRCAP``
308
309  An example would be::
310
311   tahoe add-alias fun URI:DIR2:ovjy4yhylqlfoqg2vcze36dhde:4d4f47qko2xm5g7osgo2yyidi5m4muyo2vjjy53q4vjju2u55mfa
312
313  This creates an alias ``fun:`` and configures it to use the given directory
314  cap. Once this is done, "``tahoe ls fun:``" will list the contents of this
315  directory. Use "``tahoe add-alias tahoe DIRCAP``" to set the contents of the
316  default ``tahoe:`` alias.
317
318  Since Tahoe-LAFS v1.8.2, the alias name can be given with or without the
319  trailing colon.
320
321  On Windows, the alias should not be a single character, because it would be
322  confused with the drive letter of a local path.
323
324 ``tahoe create-alias fun``
325
326  This combines "``tahoe mkdir``" and "``tahoe add-alias``" into a single step.
327
328 ``tahoe list-aliases``
329
330  This displays a table of all configured aliases.
331
332 ``tahoe mkdir``
333
334  This creates a new empty unlinked directory, and prints its write-cap to
335  stdout. The new directory is not attached to anything else.
336
337 ``tahoe mkdir subdir``
338
339 ``tahoe mkdir /subdir``
340
341  This creates a new empty directory and attaches it below the root directory
342  of the default ``tahoe:`` alias with the name "``subdir``".
343
344 ``tahoe ls``
345
346 ``tahoe ls /``
347
348 ``tahoe ls tahoe:``
349
350 ``tahoe ls tahoe:/``
351
352  All four list the root directory of the default ``tahoe:`` alias.
353
354 ``tahoe ls subdir``
355
356  This lists a subdirectory of your filesystem.
357
358 ``tahoe webopen``
359
360 ``tahoe webopen tahoe:``
361
362 ``tahoe webopen tahoe:subdir/``
363
364 ``tahoe webopen subdir/``
365
366  This uses the python 'webbrowser' module to cause a local web browser to
367  open to the web page for the given directory. This page offers interfaces to
368  add, download, rename, and unlink files and subdirectories in that directory.
369  If no alias or path is given, this command opens the root directory of the
370  default ``tahoe:`` alias.
371
372 ``tahoe put file.txt``
373
374 ``tahoe put ./file.txt``
375
376 ``tahoe put /tmp/file.txt``
377
378 ``tahoe put ~/file.txt``
379
380  These upload the local file into the grid, and prints the new read-cap to
381  stdout. The uploaded file is not attached to any directory. All one-argument
382  forms of "``tahoe put``" perform an unlinked upload.
383
384 ``tahoe put -``
385
386 ``tahoe put``
387
388  These also perform an unlinked upload, but the data to be uploaded is taken
389  from stdin.
390
391 ``tahoe put file.txt uploaded.txt``
392
393 ``tahoe put file.txt tahoe:uploaded.txt``
394
395  These upload the local file and add it to your ``tahoe:`` root with the name
396  "``uploaded.txt``".
397
398 ``tahoe put file.txt subdir/foo.txt``
399
400 ``tahoe put - subdir/foo.txt``
401
402 ``tahoe put file.txt tahoe:subdir/foo.txt``
403
404 ``tahoe put file.txt DIRCAP/foo.txt``
405
406 ``tahoe put file.txt DIRCAP/subdir/foo.txt``
407
408  These upload the named file and attach them to a subdirectory of the given
409  root directory, under the name "``foo.txt``". When a directory write-cap is
410  given, you can use either ``/`` (as shown above) or ``:./`` to separate it
411  from the following path. When the source file is named "``-``", the contents
412  are taken from stdin.
413
414 ``tahoe put file.txt --mutable``
415
416  Create a new (SDMF) mutable file, fill it with the contents of ``file.txt``,
417  and print the new write-cap to stdout.
418
419 ``tahoe put file.txt MUTABLE-FILE-WRITECAP``
420
421  Replace the contents of the given mutable file with the contents of
422  ``file.txt`` and print the same write-cap to stdout.
423
424 ``tahoe cp file.txt tahoe:uploaded.txt``
425
426 ``tahoe cp file.txt tahoe:``
427
428 ``tahoe cp file.txt tahoe:/``
429
430 ``tahoe cp ./file.txt tahoe:``
431
432  These upload the local file and add it to your ``tahoe:`` root with the name
433  "``uploaded.txt``".
434
435 ``tahoe cp tahoe:uploaded.txt downloaded.txt``
436
437 ``tahoe cp tahoe:uploaded.txt ./downloaded.txt``
438
439 ``tahoe cp tahoe:uploaded.txt /tmp/downloaded.txt``
440
441 ``tahoe cp tahoe:uploaded.txt ~/downloaded.txt``
442
443  This downloads the named file from your ``tahoe:`` root, and puts the result on
444  your local filesystem.
445
446 ``tahoe cp tahoe:uploaded.txt fun:stuff.txt``
447
448  This copies a file from your ``tahoe:`` root to a different directory, set up
449  earlier with "``tahoe add-alias fun DIRCAP``" or "``tahoe create-alias fun``".
450
451  ``tahoe cp -r ~/my_dir/ tahoe:``
452
453  This copies the folder ``~/my_dir/`` and all its children to the grid, creating
454  the new folder ``tahoe:my_dir``. Note that the trailing slash is not required:
455  all source arguments which are directories will be copied into new
456  subdirectories of the target.
457
458 ``tahoe unlink uploaded.txt``
459
460 ``tahoe unlink tahoe:uploaded.txt``
461
462  This unlinks a file from your ``tahoe:`` root (that is, causes there to no
463  longer be an entry ``uploaded.txt`` in the root directory that points to it).
464  Note that this does not delete the file from the grid.
465  For backward compatibility, ``tahoe rm`` is accepted as a synonym for
466  ``tahoe unlink``.
467
468 ``tahoe mv uploaded.txt renamed.txt``
469
470 ``tahoe mv tahoe:uploaded.txt tahoe:renamed.txt``
471
472  These rename a file within your ``tahoe:`` root directory.
473
474 ``tahoe mv uploaded.txt fun:``
475
476 ``tahoe mv tahoe:uploaded.txt fun:``
477
478 ``tahoe mv tahoe:uploaded.txt fun:uploaded.txt``
479
480  These move a file from your ``tahoe:`` root directory to the directory
481  set up earlier with "``tahoe add-alias fun DIRCAP``" or
482  "``tahoe create-alias fun``".
483
484 ``tahoe backup ~ work:backups``
485
486  This command performs a versioned backup of every file and directory
487  underneath your "``~``" home directory, placing an immutable timestamped
488  snapshot in e.g. ``work:backups/Archives/2009-02-06_04:00:05Z/`` (note that
489  the timestamp is in UTC, hence the "Z" suffix), and a link to the latest
490  snapshot in work:backups/Latest/ . This command uses a small SQLite database
491  known as the "backupdb", stored in ``~/.tahoe/private/backupdb.sqlite``, to
492  remember which local files have been backed up already, and will avoid
493  uploading files that have already been backed up (except occasionally that
494  will randomly upload them again if it has been awhile since had last been
495  uploaded, just to make sure that the copy of it on the server is still good).
496  It compares timestamps and filesizes when making this comparison. It also
497  re-uses existing directories which have identical contents. This lets it
498  run faster and reduces the number of directories created.
499
500  If you reconfigure your client node to switch to a different grid, you
501  should delete the stale backupdb.sqlite file, to force "``tahoe backup``"
502  to upload all files to the new grid.
503
504  The fact that "tahoe backup" checks timestamps on your local files and
505  skips ones that don't appear to have been changed is one of the major
506  differences between "tahoe backup" and "tahoe cp -r". The other major
507  difference is that "tahoe backup" keeps links to all of the versions that
508  have been uploaded to the grid, so you can navigate among old versions
509  stored in the grid. In contrast, "tahoe cp -r" unlinks the previous
510  version from the grid directory and links the new version into place,
511  so unless you have a link to the older version stored somewhere else,
512  you'll never be able to get back to it.
513
514 ``tahoe backup --exclude=*~ ~ work:backups``
515
516  Same as above, but this time the backup process will ignore any
517  filename that will end with '~'. ``--exclude`` will accept any standard
518  Unix shell-style wildcards, as implemented by the
519  `Python fnmatch module <http://docs.python.org/library/fnmatch.html>`__.
520  You may give multiple ``--exclude`` options.  Please pay attention that
521  the pattern will be matched against any level of the directory tree;
522  it's still impossible to specify absolute path exclusions.
523
524 ``tahoe backup --exclude-from=/path/to/filename ~ work:backups``
525
526  ``--exclude-from`` is similar to ``--exclude``, but reads exclusion
527  patterns from ``/path/to/filename``, one per line.
528
529 ``tahoe backup --exclude-vcs ~ work:backups``
530
531  This command will ignore any file or directory name known to be used by
532  version control systems to store metadata. The excluded names are:
533
534   * CVS
535   * RCS
536   * SCCS
537   * .git
538   * .gitignore
539   * .cvsignore
540   * .svn
541   * .arch-ids
542   * {arch}
543   * =RELEASE-ID
544   * =meta-update
545   * =update
546   * .bzr
547   * .bzrignore
548   * .bzrtags
549   * .hg
550   * .hgignore
551   * _darcs
552
553 Storage Grid Maintenance
554 ========================
555
556 ``tahoe manifest tahoe:``
557
558 ``tahoe manifest --storage-index tahoe:``
559
560 ``tahoe manifest --verify-cap tahoe:``
561
562 ``tahoe manifest --repair-cap tahoe:``
563
564 ``tahoe manifest --raw tahoe:``
565
566  This performs a recursive walk of the given directory, visiting every file
567  and directory that can be reached from that point. It then emits one line to
568  stdout for each object it encounters.
569
570  The default behavior is to print the access cap string (like ``URI:CHK:..``
571  or ``URI:DIR2:..``), followed by a space, followed by the full path name.
572
573  If ``--storage-index`` is added, each line will instead contain the object's
574  storage index. This (string) value is useful to determine which share files
575  (on the server) are associated with this directory tree. The ``--verify-cap``
576  and ``--repair-cap`` options are similar, but emit a verify-cap and repair-cap,
577  respectively. If ``--raw`` is provided instead, the output will be a
578  JSON-encoded dictionary that includes keys for pathnames, storage index
579  strings, and cap strings. The last line of the ``--raw`` output will be a JSON
580  encoded deep-stats dictionary.
581
582 ``tahoe stats tahoe:``
583
584  This performs a recursive walk of the given directory, visiting every file
585  and directory that can be reached from that point. It gathers statistics on
586  the sizes of the objects it encounters, and prints a summary to stdout.
587
588
589 Debugging
590 =========
591
592 For a list of all debugging commands, use "``tahoe debug``". For more detailed
593 help on any of these commands, use "``tahoe debug COMMAND --help``".
594
595 "``tahoe debug find-shares STORAGEINDEX NODEDIRS..``" will look through one or
596 more storage nodes for the share files that are providing storage for the
597 given storage index.
598
599 "``tahoe debug catalog-shares NODEDIRS..``" will look through one or more
600 storage nodes and locate every single share they contain. It produces a report
601 on stdout with one line per share, describing what kind of share it is, the
602 storage index, the size of the file is used for, etc. It may be useful to
603 concatenate these reports from all storage hosts and use it to look for
604 anomalies.
605
606 "``tahoe debug dump-share SHAREFILE``" will take the name of a single share file
607 (as found by "``tahoe find-shares``") and print a summary of its contents to
608 stdout. This includes a list of leases, summaries of the hash tree, and
609 information from the UEB (URI Extension Block). For mutable file shares, it
610 will describe which version (seqnum and root-hash) is being stored in this
611 share.
612
613 "``tahoe debug dump-cap CAP``" will take any Tahoe-LAFS URI and unpack it
614 into separate pieces. The most useful aspect of this command is to reveal the
615 storage index for any given URI. This can be used to locate the share files
616 that are holding the encoded+encrypted data for this file.
617
618 "``tahoe debug repl``" will launch an interactive Python interpreter in which
619 the Tahoe-LAFS packages and modules are available on ``sys.path`` (e.g. by using
620 '``import allmydata``'). This is most useful from a source tree: it simply sets
621 the PYTHONPATH correctly and runs the Python executable.
622
623 "``tahoe debug corrupt-share SHAREFILE``" will flip a bit in the given
624 sharefile. This can be used to test the client-side verification/repair code.
625 Obviously, this command should not be used during normal operation.
626
627 "``tahoe debug trial [OPTIONS] [TESTSUITE]``" will run the tests specified by
628 TESTSUITE (defaulting to the whole Tahoe test suite), using Twisted Trial.