Changeset 965f0dcf in trunk
- Timestamp:
- 2010-06-17T01:28:57Z (15 years ago)
- Branches:
- master
- Children:
- 6d669029
- Parents:
- 1c7e71e
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified contrib/fuse/impl_a/tahoe_fuse.py ¶
r1c7e71e r965f0dcf 187 187 # FIXME: This user-friendly help message may be platform-dependent because it checks the exception description. 188 188 if le.args[1].find('No such file or directory') != -1: 189 raise SystemExit('%s requires a directory capability in %s, but it was not found.\n Please see "The CLI" in "docs/using.html".\n' % (sys.argv[0], rootdirfn))189 raise SystemExit('%s requires a directory capability in %s, but it was not found.\n' % (sys.argv[0], rootdirfn)) 190 190 else: 191 191 raise le -
TabularUnified docs/running.html ¶
r1c7e71e r965f0dcf 10 10 11 11 <body> 12 <h1>How To StartTahoe-LAFS</h1>12 <h1>How To Run Tahoe-LAFS</h1> 13 13 14 14 <p>This is how to run a Tahoe-LAFS client or a complete Tahoe-LAFS grid. First you … … 66 66 67 67 68 <h 2>A note about small grids</h2>68 <h3>A note about small grids</h3> 69 69 70 70 <p>By default, Tahoe-LAFS ships with the configuration parameter … … 76 76 grid.</p> 77 77 78 78 79 <h2>Do Stuff With It</h2> 79 80 80 <p>Now you have a decentralized filesystem. See <a 81 href="using.html">using.html</a> for instructions about how to interact 82 with it.</p> 81 <p>This is how to use your Tahoe node.</p> 82 83 <h3>The WUI</h3> 84 85 <p>Point your web browser to <a 86 href="http://127.0.0.1:3456">http://127.0.0.1:3456</a> — which is the URL 87 of the gateway running on your own local computer — to use your newly 88 created node.</p> 89 90 <p>Create a new directory (with the button labelled "create a directory"). 91 Your web browser will load the new directory. Now if you want to be able 92 to come back to this directory later, you have to bookmark it, or otherwise 93 save a copy of the URL. If you lose URL to this directory, then you can never 94 again come back to this directory.</p> 95 96 <p>You can do more or less everything you want to do with a decentralized 97 filesystem through the WUI.</p> 98 99 <h3>The CLI</h3> 100 101 <p>Prefer the command-line? Run "<code>tahoe --help</code>" (the same 102 command-line tool that is used to start and stop nodes serves to navigate 103 and use the decentralized filesystem). To get started, create a new 104 directory and mark it as the 'tahoe:' alias by running "<code>tahoe 105 create-alias tahoe</code>". Once you've done that, you can do 106 "<code>tahoe ls tahoe:</code>" and "<code>tahoe cp LOCALFILE 107 tahoe:foo.txt</code>" to work with your filesystem. The Tahoe CLI uses 108 similar syntax to the well-known scp and rsync tools. See <a 109 href="frontends/CLI.txt">CLI.txt</a> for more details.</p> 110 111 <p>As with the WUI (and with all current interfaces to Tahoe), you are 112 responsible for remembering directory capabilities yourself. If you create 113 a new directory and lose the capability to it, then you cannot access that 114 directory ever again.</p> 115 116 <h3>The SFTP and FTP frontends</h3> 117 118 <p>You can access your Tahoe grid via any <a href="http://en.wikipedia.org/wiki/SSH_file_transfer_protocol">SFTP</a> or 119 <a href="http://en.wikipedia.org/wiki/File_Transfer_Protocol">FTP</a> client. 120 See <a href="frontends/FTP-and-SFTP.txt">FTP-and-SFTP.txt</a> for how to set this up. 121 On most Unix platforms, you can also use SFTP to plug Tahoe into your computer's 122 local filesystem via <code>sshfs</code>. 123 124 <p>The <a href="http://tahoe-lafs.org/trac/tahoe-lafs/wiki/SftpFrontend">SftpFrontend</a> page 125 on the wiki has more information about using SFTP with Tahoe.</p> 126 127 <h3>The WAPI</h3> 128 129 <p>Want to program your Tahoe node to do your bidding? Easy! See <a 130 href="frontends/webapi.txt">webapi.txt</a>.</p> 131 132 <h2>Socialize</h2> 133 134 <p>You can chat with other users of and hackers of this software on the 135 #tahoe IRC channel at <code>irc.freenode.net</code>, or on the <a 136 href="http://tahoe-lafs.org/cgi-bin/mailman/listinfo/tahoe-dev">tahoe-dev mailing list</a>.</p> 83 137 84 138 </body>
Note: See TracChangeset
for help on using the changeset viewer.