Changes between Version 5 and Version 6 of Tutorial


Ignore:
Timestamp:
2010-08-05T03:06:44Z (14 years ago)
Author:
terrell
Comment:

typos and grammar

Legend:

Unmodified
Added
Removed
Modified
  • Tutorial

    v5 v6  
    4848now Tahoe is installed \o/
    4949
    50 = Instanciate the nodes =
     50= Instantiate the nodes =
    5151
    5252So, after reading running.html, configuration.txt and architecture.txt, we'll first
     
    6565}}}
    6666Then we copy that last string we got from 'cat', and paste it in tahoe.cfg,
    67 as follows (edit it using your favorite editor, mine is vim) :
     67as follows :
    6868{{{
    6969 vm2% vim ~/.tahoe/tahoe.cfg
     
    9696myuser    5360  1.2  7.4 158820 28348 ?        S<   02:13   0:00 /usr/bin/python /usr/bin/twistd -y tahoe-client.tac --logfile logs/twistd.log
    9797}}}
    98 and you shall see an output that looks alike. If not, tahoe failed to start.
    99 You've got to check ~/.tahoe/logs/ what got wrong.
     98and you should see output that looks similar. If not, tahoe failed to start.
     99You've got to check ~/.tahoe/logs/ to see what went wrong.
    100100
    101101= Configure the nodes =
     
    130130}}}
    131131
    132 Then get your favorite browser and browse to the following URLs, you
    133 should get pages similar to the ones below
     132Then browse to the following URLs and you should get pages similar to the ones below
    134133
    135134  * http://172.16.23.1:3456/
     
    142141[[Image(http://tahoe-lafs.org/trac/tahoe-lafs/attachment/wiki/Tutorial/172.16.23.130_3456_1.png)]]
    143142
    144 Now it's time to be able to store something on the grid, as
    145 the whole purpose of Tahoe-LAFS, and thus of this tutorial is
    146 to get a grid to store files.
     143Now it's time to be able to store something on the grid :
    147144
    148145On host and vm2, edit again ~/.tahoe/tahoe.cfg and modify it
     
    155152 32 enabled = true
    156153 33 readonly = false
    157  34 reserved_space = 1GB # here you tell the storage server how much space you would like to use
     154 34 reserved_space = 1GB # here you tell the storage server how much disk space it cannot use
    158155------------->8---------------------->8----------------
    159156 vm2% tahoe restart
     
    178175= File capabilities ? =
    179176
    180 Now it's time for a bit of litterature. File capabilities are unique "keys"
    181 associated with the files. It's used internally by Tahoe-LAFS to identify
     177Now it's time for a bit of literature. File capabilities are unique "keys"
     178associated with the files. They are used internally by Tahoe-LAFS to identify
    182179every file, and used as an URL to locate the file.
    183180
     
    188185For mutable files, there are read-only and read-write capabilities.
    189186A read-only capability will point to a version of a file. A read-write
    190 capability represant the ability to read the file, the ability to write
     187capability represent the ability to read the file and the ability to write
    191188a new version of a file.
    192189
     
    198195= Access your shares =
    199196
    200 You can store and access files on Tahoe-LAFS using a lot of
    201 different ways. The fatest is to either use the Web UI, or
    202 the CLI though you need to remember the caps of the files.
    203 
    204 Using the WUI is straight forward, connect to a storage client,
     197You can store and access files on Tahoe-LAFS in many
     198different ways. The fastest is to either use the Web UI (WUI), or
     199the command line (CLI) though you need to know the caps of the files.
     200
     201Using the WUI is straightforward: connect to a storage client,
    205202use the forms to add/get/remove files and directories. Just
    206 always remember that once you created a directory, you need to
    207 save the file's URI, or you won't be able to find it again later
    208 on.
     203always remember that once you create a directory, you need to
     204save the directory's URI, or you won't be able to find it again.
    209205
    210206== Using the CLI ==
    211207
    212208The CLI behaves mostly like a standard shell, with all
    213 commands prefixed by 'tahoe', the same way version control
    214 system work.
     209commands prefixed by 'tahoe'.
    215210
    216211If you execute for the first time :
     
    231226}}}
    232227
    233 What happens here is that the Tahoe client tries to connect to the URL
     228What happens here is that the Tahoe-LAFS client tries to connect to the URL
    234229given in the ~/.tahoe/node.url file. So, you need to edit ~/.tahoe/node.url
    235230{{{