Changes between Initial Version and Version 1 of GECTutorialVMInstructions


Ignore:
Timestamp:
10/20/12 18:23:32 (12 years ago)
Author:
Jeanne Ohren
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GECTutorialVMInstructions

    v1 v1  
     1== Where can I find the GEC15 tutorial VM image? ==
     2
     3  - The tutorial VM can be downloaded from [https://www.planet-lab.org/GEC15]
     4  - Password for logging in to the VM will be handed out at the tutorial.
     5
     6== Installing the VM ==
     7
     81. Install !VirtualBox
     9
     10    Download the !VirtualBox software from http://www.virtualbox.org.
     11
     12    If you already have !VirtualBox installed on your machine, make sure it is version 4.1.18 or above.
     13
     142. Download !VirtualBox VM image for tutorials
     15
     16    Download the !VirtualBox VM image (GEC15_Tutorials.ova) from the website [https://www.planet-lab.org/GEC15/]
     17
     183. Install the GEC15_Tutorials.ova virtual machine image
     19
     20    Start up !VirtualBox, select File->Import Appliance..., and follow the
     21    instructions.    Accept the default VM settings during the import.
     22
     23    To run the virtual machine, go to the Oracle VM !VirtualBox Manager window, select the VM and click the
     24    green arrow labeled Start at the top of this window.
     25
     26    If the install was successful, you should see the logon screen for
     27    the Ubuntu OS.
     28
     29
     30== Using Shared Folders ==
     31
     32If you need to transfer files from your host machine/laptop, the easiest way is typically using Shared Folders.
     33Follow these steps to set up a shared folder on your VM.
     34
     351. Go to the !VirtualBox "Devices" menu and select "Shared Folders..."
     36
     372. Click on the "Add" button on the right (looks like a folder with a plus sign).
     38
     393. Select the path of the folder you would like to share with your VM.
     40
     414. Enter the name you would like to give this shared folder in "Folder Name:" (e.g. myshared)
     42
     435. Click on "OK" in the Add Shares window
     44
     456. Click on "OK" in the Shared Folders window
     46
     477. Create the directory where you would like you shared folder mounted (e.g. /media/shared): 
     48{{{
     49sudo mkdir /media/shared
     50}}}
     51
     528. Mount the shared folder: 
     53{{{
     54sudo mount -t vboxsf myshared /media/shared
     55}}}
     56
     57You should now be able to access your folder at /media/shared.