Changes between Initial Version and Version 1 of InstallationGuidelines/VirtualMachineGHC


Ignore:
Timestamp:
11/12/11 05:44:20 (13 years ago)
Author:
Pat Tressel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/VirtualMachineGHC

    v1 v1  
     1[[TOC]]
     2= Installation Guidelines: Virtual Machine =
     3
     4The most convenient way to get up and running is to use a pre-configured development kit -- a complete operating system that's been set up to include all the required code and tools, and saved as an image of the system's disk -- and run this "virtual system" (sometimes called an "appliance") in a "virtual machine" (VM). The virtual machine runs as an application on your machine -- the "host" machine -- and emulates a separate computer -- the "guest" machine. You won't have to install anything but the virtual machine directly on your system. (We're including the official virtual machine jargon in case you need to read virtual machine documentation. We'll use "VM" to refer to the guest virtual machine. The virtual machine "manager" will be the tool that is used to configure and start your VM.)
     5
     6== Get the Sahana Eden development kit image ==
     7
     8 * Download the current '''[http://eden.sahanafoundation.org/downloads/eden_dev_env_-_l_vb.tar.gz virtual machine image]'''. Size is about 1GB.
     9
     10 * The downloaded file is compressed -- uncompress it as follows. (You should end up with a directory with a name like "Eden Dev Env".)
     11  * On Windows, a good tool for (un)compressing is '''[http://www.7-zip.org/download.html 7-Zip]'''.
     12  * On Linux / Unix, do: [[br]]
     13    {{{tar xzf filename.tar.gz}}}[[br]]
     14    using the actual downloaded filename in place of filename.tar.gz.
     15
     16== Install !VirtualBox ==
     17
     18 * Download the appropriate '''[https://www.virtualbox.org/wiki/Downloads VirtualBox binary]''' for your system. (You won't need the SDK, and would only need the "extension pack" if you want to use a USB device from your virtual system. You can add it later if so.)
     19
     20 * Run the installer (by whatever means is appropriate for your system).
     21  * Let it install all features.
     22  * The installation will temporarily disconnect your machine from the network -- take appropriate action before letting the installer proceed if you are running something that can't tolerate being disconnected.
     23
     24== Import the image into the virtual machine ==
     25
     26 * Start !VirtualBox Manager (or let the installer start it).
     27
     28 * Give !VirtualBox Manager the image to run:
     29  * Select File -> Import Appliance.
     30  * Click the Choose button. Navigate into the Eden Dev Env directory and select the .ovf file).
     31  * Click Next (or Open, for a Mac).
     32  * (Do not uncheck any options on the appliance options form.)
     33  * Click Import.
     34
     35== Start the virtual machine ==
     36
     37On the left side of the !VirtualBox Manager GUI, you should see your new "Eden Dev Env" virtual machine.
     38
     39 * Double-click the virtual machine entry to start it.
     40 * The Login screen should appear. User is ''dev'' and password is ''EastOfEden''.
     41 * After you're logged in, the Eclipse IDE will start -- ignore it for the moment.
     42
     43== Change your password. ==
     44
     45 * Start a terminal window by double-clicking the LXTerminal icon.
     46 * To change your password, type {{{passwd}}} and follow the instructions.
     47
     48== Connect to the network ==
     49
     50Next tell the VM about your machine's network interface, so the guest can get to the network.
     51
     52 * Scroll down on the right side of !VirtualBox Manager until you see Network -- click that.
     53 * If no adapters are enabled, enable adapter 1.
     54 * For "Attached to" select "Bridged Adapter".
     55 * Under that, for "Name", select the appropriate network interface, e.g. wireless if that's what you're using. (Keep this setting in mind -- you may need to change it if you sometimes use a wired network, and sometimes wireless.)
     56
     57== After logging in... ==
     58
     59=== Eclipse ===
     60Some Eclipse and !PyDev configuration is needed in the current image. (This is temporary -- this section will be removed when an image is uploaded that has a configured Eclipse included.)
     61 * DeveloperGuidelinesEclipse#Configuration
     62
     63=== Updating Web2py, Eden, and the operating system ===
     64
     65'''''GHC Codeathon participants, take note! You don't need to update anything -- skip this.'''''
     66
     67The 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.
     68
     69==== Update web2py ====
     70On occasion, the latest revision of Web2py is not stable. Check the topic in the #sahana-eden IRC channel on freenode for the latest known-safe revision.
     71To update Web2py to the latest revision:
     72{{{
     73cd /home/web2py
     74bzr update
     75}}}
     76To update to a specific revision, do the following with nnnn replaced by the revision you want.
     77{{{
     78cd /home/web2py
     79bzr update -r nnnn
     80}}}
     81
     82==== Update Eden ====
     83You will almost certainly want the latest revision of Eden.
     84{{{
     85cd /home/web2py/applications/eden
     86bzr pull
     87}}}
     88If, for some reason, you need a specific revision, do the following with nnnn replaced by the revision you want:
     89{{{
     90cd /home/web2py/applications/eden
     91bzr pull -r nnnn
     92}}}
     93
     94==== Optionally update the operating system ====
     95Although it's usually good advice to update the operating system and applications to pick up security fixes, updating may lead to incompatibilities with other software, and has been known to render the system unusable. So do the following only if you know there is a security issue, and not when you're in the middle of something critical.[[br]]
     96Log in as ''dev'' and execute the following:
     97{{{
     98sudo apt-get update
     99sudo apt-get upgrade
     100}}}
     101
     102-----
     103
     104== Notes on the configuration ==
     105
     106=== Which Linux is this? ===
     107
     108The virtual machine image is based on a [BluePrintlivecdinstaller blueprint] and is configured to use about 512MB of RAM. The virtual disk is configured to expand to 20GB. The virtual machine is built on [http://www.turnkeylinux.org/core TurnKey Linux's Core], which in turn is based on Ubuntu 10.04 (Lucid -- the most recent long-term support release). The machine runs [http://code.google.com/p/shellinabox/ Shellinabox], [http://www.webmin.com/ Webmin], and SSH/sftp as services from startup.
     109
     110The development environment uses [http://lxde.org LXDE], a lightweight desktop environment.
     111
     112=== Bridged networking vs. NAT ===
     113
     114There are two options for having the host and guest share the physical interface, NAT or bridged. NAT is less obtrusive but bridged provides more capability to the guest. See this discussion of the '''[http://www.virtualbox.org/manual/ch06.html differences between NAT and bridged modes]'''. The installation procedure shows bridged setup (because everyone who we know who is using VirtualBox is using bridged networking...).
     115
     116=== Tools ===
     117
     118Several useful tools have been installed:
     119 * Bazaar (bzr) -- revision control system used on Launchpad, where Sahana eden sources are hosted.
     120 * Firefox with Firebug for examining what is sent to the browser, and viewing HTTP messages sent to and from the browser.
     121 * Eclipse with PyDev for editing and debugging Python code.
     122 * Scripts for updating the Eden code and other tools.
     123 * iPython -- a fancier Python command line than the standard. (Note not everyone prefers this.)
     124 * irssi
     125
     126== Notes on using Linux (mainly for non-Linux users) ==
     127
     128=== File locations ===
     129Web2py is located in /home/web2py. Eden is located in /home/web2py/applications/eden. Eclipse and PyDev are preconfigured with this information.
     130
     131=== The root account ===
     132
     133The ''root'' account is the privileged user on Linux, but you don't need to log in as root to perform privileged tasks like installing software.  You can act as root without knowing the root password with the {{{sudo}}} command -- the ''dev'' account has the privilege to
     134use {{{sudo}}}.
     135In a terminal window, to execute a command with root privileges:
     136{{{
     137sudo command-to-execute-as-root
     138}}}
     139This will prompt for a password if {{{sudo}}} hasn't been run recently -- it is asking for the current user's password -- here, that's the ''dev'' password.
     140
     141To change passwords after first boot, log in as ''dev'', start a terminal window, and enter the following commands:
     142{{{
     143sudo passwd root #change root password
     144passwd #change dev password
     145}}}
     146
     147== Procedure for making a new virtual machine image ==
     148
     149InstallationGuidelinesVirtualMachineMaintenance