wiki:InstallationGuidelines/VirtualMachine

Version 74 (modified by Pat Tressel, 11 years ago) ( diff )

--

Installation Guidelines: Virtual Machine

The 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.)

Get the Sahana Eden development kit image

  • Download the current virtual machine image (EdenDevEnv.ova). Size is 2.1 Gb. Estimated time for download on a high-speed network connection is an hour (but it could take considerably longer depending on network speed and ISP policies on large downloads). Updated: 2013-10-1.
  • Note: If clicking the link does not download the file, right-click the link and select "Download Linked File."

Install VirtualBox

  • Download the appropriate 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.)
  • Run the installer (by whatever means is appropriate for your system).
    • Let it install all features.
    • Note: The installation will temporarily disconnect your machine from the network.

Import the image into the virtual machine

  • Start VirtualBox Manager (or let the installer start it).
  • Give VirtualBox Manager the image to run:
    • File -> Import Appliance. screenshot
    • Click the Open appliance... button. Navigate to the EdenDevEnv.ova file and select it. screenshot
    • Click Next (or Open, for a Mac).
    • (Do not uncheck any options on the appliance options form.)
    • Click Import. screenshot
    • Wait for the Import process to finish. screenshot Estimated time:5 minutes

Connect to the network

Next tell the VM about your machine's network interface, so the guest can get to the network.

  • Scroll down on the right side of VirtualBox Manager until you see Network -- click the link on the word "Network" to open the Network panel. (This may take a minute to load.)
  • If no adapters are enabled, enable adapter 1.
  • For "Attached to" select "Bridged Adapter".
  • 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.)

Start the virtual machine

On the left side of the VirtualBox Manager GUI, you should see your new "EdenDevEnv" virtual machine.

  • Double-click the virtual machine entry to start it. screenshot
  • The default user will be automatically logged in. The default user's username and initial password are:
    • User: dev
    • Password: eden

You may want to change the dev password.

  • Start a terminal window by double-clicking the LXTerminal icon.
  • To change your password, type passwd and follow the instructions.

Conditionally update Web2py, Eden, and the operating system

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.

Note if you are using a wireless network that redirects to a login form or "terms and conditions" page, then before you use git to update Eden and Web2py, start Firefox and (attempt to) go to any site, so you can take care of logging in or signing up with the wifi provider. Otherwise git, which uses https, will get redirected to the login form, and you'll get an error indicating that the wifi provider's site is not GitHub...

Note you may get a warning about being unable to find SSH keys. No keys are set up initially, but later if you want to submit changes on GitHub, you nay want to set up your own SSH keys instead of using your GitHub username and password in the git command.

Update Eden

Start a terminal window by double-clicking the !LXTerminal icon.

You will almost certainly want the latest revision of Eden:

cd /home/web2py/applications/eden
git pull origin master

(If / when you set up your own GitHub repository that is a "fork" of the main Eden repository, you'll want to change the name of the main Eden repository from "origin" to "upstream", so that you can use "origin" to refer to your own repository.)

If you are working on a specific branch for a particular event (e.g. RHoK), then you can add that branch to your repository:

cd /home/web2py/applications/eden
git remote add <branch_name> https://github.com/flavour/<branch_name>.git
git fetch <branch_name>

Now you have both the trunk ("master" branch) and the specific branch <branch_name> in your local repo.

If, for some reason, you need a specific revision of the current branch, do the following:

cd /home/web2py/applications/eden
git checkout -b <revision> <branch_name>

(git requires a name for a branch if you want to preserve commits.)

Update web2py

To update Web2py to the latest revision:

cd /home/web2py
git pull origin master

On occasion, the latest revision of Web2py is not stable, or is incompatible with the current version of Eden. Check the topic in the #sahana-eden IRC channel on freenode for the latest known-safe revision. The following shows checking out a specific revision as the master branch, by first renaming master, then checking out the desired revision as master, then getting rid of the former master branch.

cd /home/web2py
git branch -m master latest_master
git checkout -b <recommended_revision> master
git branch -D latest_master

Optionally update the operating system

Although 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 or need more recent software, and not when you're in the middle of something critical.

sudo apt-get update
sudo apt-get upgrade

Next steps

Installation is complete here.

Next, start Web2py and Eden.

  • Edit web2py/applications/eden/models/000_config.py to say that you've finished editing.
  • Start Web2py using Eclipse's "web2py" Debug configuration.
  • Access the application using Firefox. To do this, make sure the application is currently running in Eclipse, then open Firefox and select "Sahana Eden local."

Notes on the configuration

These are a few notes on what's included, Linux usage, etc. They're not part of the installation.

Which Linux is this?

The virtual machine image is based on Lubuntu -- a lightweight distribution derived from Ubuntu, using the LXDE desktop manager. It is configured to use about 1024MB of RAM with a dynamically-sized virtual disk which can expand to 10GB. The virtual machine is built on the latest Lubuntu ISO, which in turn is based on Ubuntu 13.04 (Raring Ringtail -- the most recent long-term support release). LXDE replaces the Unity desktop manager.

Bridged networking vs. NAT

There 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 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...).

Tools

Several useful tools have been installed:

  • git - Version control system. Hosting is provided by GitHub
  • Firefox with Firebug for examining what is sent to the browser, and viewing HTTP messages sent to and from the browser.
  • Eclipse with PyDev for editing and debugging Python code.
  • Scripts for updating the Eden code and other tools.
  • iPython -- a fancier Python command line than the standard. (Note not everyone prefers this.)
  • irssi - IRC chat client more in wikipedia

Notes on using Linux (mainly for non-Linux users)

File locations

Web2py is located in /home/web2py. Eden is located in /home/web2py/applications/eden. Eclipse and PyDev are preconfigured with this information.

The root account

The 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 use sudo. In a terminal window, to execute a command with root privileges:

sudo command-to-execute-as-root

This 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.

To change passwords after first boot, log in as dev, start a terminal window, and enter the following commands:

sudo passwd root #change root password
passwd #change dev password

Procedure for making a new virtual machine image

InstallationGuidelinesVirtualMachineMaintenance

Note: See TracWiki for help on using the wiki.