Changes between Version 32 and Version 33 of InstallationGuidelines/VirtualMachine
- Timestamp:
- 11/12/11 10:09:17 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/VirtualMachine
v32 v33 51 51 * To change your password, type {{{passwd}}} and follow the instructions. 52 52 53 == After logging in... == 53 After logging in, the Eclipse IDE will start automatically. 54 54 55 The Eclipse IDE will start automatically. 55 == Conditionally update Web2py, Eden, and the operating system == 56 56 57 === For the GHC Codeathon only === 57 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 Web2py or the Linux distribution are needed. 58 58 59 '''''If you're not participating in the GHC Codeathon using the shared Launchpad branch, do not do this.''''' 59 ==== Update Eden ==== 60 60 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. 62 62 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.''''' 64 64 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 {{{ 67 cd /home/web2py/applications/eden 68 bzr 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 73 You will almost certainly want the latest revision of Eden. 74 {{{ 75 cd /home/web2py/applications/eden 76 bzr pull 77 }}} 78 If, for some reason, you need a specific revision, do the following with nnnn replaced by the revision you want: 79 {{{ 80 cd /home/web2py/applications/eden 81 bzr pull -r nnnn 82 }}} 66 83 67 84 ==== Update web2py ==== … … 76 93 cd /home/web2py 77 94 bzr 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/eden84 bzr pull85 }}}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/eden89 bzr pull -r nnnn90 95 }}} 91 96