Changes between Version 32 and Version 33 of InstallationGuidelines/VirtualMachine


Ignore:
Timestamp:
11/12/11 10:09:17 (13 years ago)
Author:
Pat Tressel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/VirtualMachine

    v32 v33  
    5151 * To change your password, type {{{passwd}}} and follow the instructions.
    5252
    53 == After logging in... ==
     53After logging in, the Eclipse IDE will start automatically.
    5454
    55 The Eclipse IDE will start automatically.
     55== Conditionally update Web2py, Eden, and the operating system ==
    5656
    57 === For the GHC Codeathon only ===
     57The Eden code is updated (much) more frequently than is the VM image, so the Eden branch supplied in the image will be out of date.  So, too, will be Web2py and the Linux distribution, but those will typically not need frequent updating. We recommend only updating Eden, unless you know that new versions of Web2py or the Linux distribution are needed.
    5858
    59 '''''If you're not participating in the GHC Codeathon using the shared Launchpad branch, do not do this.'''''
     59==== Update Eden ====
    6060
    61 === Not for the GHC Codeathon, optionally update Web2py, Eden, and the operating system ===
     61 * Start a terminal window by double-clicking the LXTerminal icon.
    6262
    63 '''''GHC Codeathon participants using the downloaded generic virtual machine image, take note! You don't need to update anything -- skip this.'''''
     63'''''If you're participating in the GHC Codeathon (i.e. using the shared Launchpad branch) this variant is for you.'''''
    6464
    65 The Eden code is updated (much) more frequently than is the VM image, so the Eden branch supplied in the image will be out of date.  So, too, will be Web2py and the Linux distribution, but those will typically not need frequent updating. We recommend only updating Eden unless you know that new versions of the others are needed.
     65 * Point your local Eden branch at the shared Launchpad branch and pick up any work that's already been done:[[br]]
     66   {{{
     67cd /home/web2py/applications/eden
     68bzr pull --remember lp:~ghc-2011-codeathon/sahana-eden/team
     69}}}
     70
     71'''''If you are NOT participating in the GHC Codeathon, these commands are for you.'''''
     72
     73You will almost certainly want the latest revision of Eden.
     74{{{
     75cd /home/web2py/applications/eden
     76bzr pull
     77}}}
     78If, for some reason, you need a specific revision, do the following with nnnn replaced by the revision you want:
     79{{{
     80cd /home/web2py/applications/eden
     81bzr pull -r nnnn
     82}}}
    6683
    6784==== Update web2py ====
     
    7693cd /home/web2py
    7794bzr update -r nnnn
    78 }}}
    79 
    80 ==== Update Eden ====
    81 You will almost certainly want the latest revision of Eden.
    82 {{{
    83 cd /home/web2py/applications/eden
    84 bzr pull
    85 }}}
    86 If, for some reason, you need a specific revision, do the following with nnnn replaced by the revision you want:
    87 {{{
    88 cd /home/web2py/applications/eden
    89 bzr pull -r nnnn
    9095}}}
    9196