Changes between Initial Version and Version 1 of GEC13VMSetup


Ignore:
Timestamp:
02/23/12 10:05:22 (12 years ago)
Author:
nriga@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GEC13VMSetup

    v1 v1  
     1= GEC 13 VM Setup =
     2This page is for keeping track of the setup of the VM that is going to be used for the GEC 12 tutorials.   The VM was create using !VirtualBox version 4.1.4.  It is running Ubuntu version 10.04 LTS.
     3
     4''Please update this page with information on software you install on the VM: Name and version number of the software, location, etc..  Please put tutorial specific software (e.g. experiment software that is installed onto GENI resources) in the specific directories in the Tutorials directory under the user's home directory (e.g. /home/geni/Tutorials/Omni).''
     5
     6
     7== Experimental Workflow Tutorial  ==
     8   * '''Installed Omni, Final gcf 1.6 release''' Install the following packages
     9{{{
     10sudo apt-get install python-m2crypto python-dateutil \
     11                     python-pyopenssl libxmlsec1 xmlsec1 \
     12                     libxmlsec1-openssl libxmlsec1-dev
     13}}}
     14
     15Download release gcf1.6 
     16{{{
     17tar xvfz gcf-1.6.tar.gz
     18\rm gcf-1.6.tar.gz
     19ln -s gcf-1.6 gcf
     20}}}
     21
     22   * Added in the end of the .bashrc file of the GENI user these lines
     23{{{
     24# set PATH so it includes Omni software if it exists
     25if [ -d "/home/geni/Tutorials/ExptWorkflow/gcf/src" ] ; then
     26    PATH="/home/geni/Tutorials/ExptWorkflow/gcf/src:$PATH"
     27    PATH="/home/geni/Tutorials/ExptWorkflow/gcf/examples:$PATH"
     28    export PYTHONPATH="/home/geni/Tutorials/ExptWorkflow/gcf/src:$PYTHONPATH"
     29fi
     30
     31# set PATH to include scripts for the Experiment Workflow tutorial
     32if [ -d "/home/geni/Tutorials/ExptWorkflow/bin" ] ; then
     33    PATH="/home/geni/Tutorials/ExptWorkflow/bin:$PATH"
     34    PATH="/home/geni/Tutorials/ExptWorkflow/gcf/examples:$PATH"
     35fi
     36
     37}}}
     38
     39
     40