Difference between revisions of "IGEP SDK Virtual Machine"

From IGEP - ISEE Wiki

Jump to: navigation, search
m
m
Line 14: Line 14:
 
*VMware Player: A VMware product that lets you run multiple operating systems at the same time on your PC. It allows you to create isolated virtual machines to try things out. See [http://www.vmware.com/products/player http://www.vmware.com/products/player] for more information.
 
*VMware Player: A VMware product that lets you run multiple operating systems at the same time on your PC. It allows you to create isolated virtual machines to try things out. See [http://www.vmware.com/products/player http://www.vmware.com/products/player] for more information.
  
'''OVA File:''' Is a TAR file with the OVF directory inside. The Open Virtual Machine Format file<br>defines the Virtual Machine, including which disk image (vmdk) to use. The disk image contains<br>a Linux distribution build by ISEE. For information on the Open Virtual Machine Format file, see<br>[http://en.wikipedia.org/wiki/Open_Virtualization_Format this page] for more information.<br>
+
'''OVA File:''' Is a TAR file with the OVF directory inside. The Open Virtual Machine Format file defines the Virtual Machine, including which disk image (vmdk) to use. The disk image contains a Linux distribution build by ISEE. For information on the Open Virtual Machine Format file, see [http://en.wikipedia.org/wiki/Open_Virtualization_Format this page] for more information.
  
 
= Features  =
 
= Features  =

Revision as of 17:45, 13 August 2012

Overview

The IGEP SDK Virtual Machine allows you to boot a custom Linux distribution image using a non-Linux development system. We don't recommend that you use the virtual machine as a day-to-day production development environment. You should limit the virtual machine to testing out and experiencing with the IGEP Technology.

We use a virtual machine (VM) to make an easy way to introduce quickly to a complete development environment for IGEP Technology based devices.

To understand the virtual machine, you need to be familiar with some terms and concepts:

Host Computer: The system on which you are running the virtual machine. For example, the host computer could be your laptop computer running the Windows operating system.

Virtualization infrastructure:

  • VirtualBox: An Oracle product that lets you run multiple operating systems at the same time on your PC. It allows you to create isolated virtual machines to try things out. See https://www.virtualbox.org for more information.
  • VMware Player: A VMware product that lets you run multiple operating systems at the same time on your PC. It allows you to create isolated virtual machines to try things out. See http://www.vmware.com/products/player for more information.

OVA File: Is a TAR file with the OVF directory inside. The Open Virtual Machine Format file defines the Virtual Machine, including which disk image (vmdk) to use. The disk image contains a Linux distribution build by ISEE. For information on the Open Virtual Machine Format file, see this page for more information.

Features

IGEP SDK Virtual Machine includes Software Development Kit (SDK) from ISEE. All components areinstalled and configured to speed up getting started with IGEP Technology. It is based in Linux Mint distribution (Ubuntu/Debian variant) with the following features:

Distribution based on:

  • Release: Linux Mint 12 (Lisa)
  • Edition: Gnome Desktop, x86

Software included:

  • IGEP SDK Yocto Toolchain
  • Eclipse IDE with Yocto Plug-in and Linux Tools.
  • Qt creator IDE

Account information:

  • Username: jdoe
  • Password: letmein

Network configuration (IP addresses):

  • eth0 − assigned via dhcp.
  • eth0:0 − static ip address 192.168.5.10
  • usb0 − assigned via dhcp.

Install Virtual Machine

This tutorial guide shows the steps for setup the IGEP SDK Virtual Machine (VM) in your computer, which includes a software development kit with all its software completely installed and ready to use.

It also shows how to connect the VM to an IGEP Processor Board, to test your applications directly into your board.


Requirements

  • a computer with Linux, Mac or Windows

Download the IGEP SDK Virtual Machine

First of all, download the Virtual Machine:

http://isee.biz/component/zoo/item/igep-virtual-machine-sdk-yocto

You can also download the Virtual Machine manual:

http://isee.biz/component/zoo/item/igep-sdk-software-user-manual

.. or you can:

  1. Open a web browser and go to www.isee.biz, the main page from ISEE.
  2. In the product section, go to the page of the product you have, for example, IGEPv2.
  3. Select the "IGEP SDK Virtual Machine" and downloaded it into your PC.

Install and configure the Virtual Machine

The IGEP SDK Virtual Machine can be used with:

  1. Virtualbox [1], a multiplatorm application for Linux, Mac or Windows
  2. VMWare Player [2], which can be downloaded for Windows or Linux.

VirtualBox

Go to file / import ampliance, select the downloaded .ova file and click next.

Continue with the installation, leave the default configuration of the Virtual Machine and finally click to import.

If you edit the default configuration, ensure to set bridge mode to the network adapter


VMWare

Open a new virtual machine and select the .ova downloaded file.

Install additional features to the VM

VirtualBox

If you want to add some functionalities to the virtual machine install the guest additions.

  1. Select guest additions.
  2. Run the autorun application.
  3. Remember that the root user has the password: letmein

VMWare

  1. At the top of the application, go to Virtual Machine menu and select "Install VMWare tools"
  2. Select "Download and install"
  3. Extract the downloaded file
  4. Open a terminal session and go to the extracted folder.
  5. Run the vmware-install.pl
  6. Press return key and continue with the installation at all the installation prompts

When finnishing the installation, restart the VM and you will be able to switch to full screen, copy/paste between OS's, etc.

Connect your board to the Virtual Machine

In this tutorial we are going to connect IGEPv2 via ethernet to your computer, but you can use other boards and interfaces, such USB-Ethernet Gadget.


First of all, connect IGEPv2 to your computer via the Ethernet interface and power it up.

ASSUMING THE DEFAULT CONFIGURATION of the pre-installed software

In the Virtual Machine, open a terminal session and check that appears a network interface called eth0:0

If it does not mount it, check the connections and reconnect the wired connection of the Virtual machine.

Compile an run and debug a 'C' application using Eclipse IDE

You can use any of the preinstalled IDE's in the IGEP SDK Virtual Machine. The VM has many installed and configured IDE's such Eclipse and Qt creator ready to develop your applications.

In this tutorial, let's try Eclipse IDE and compile one of the available examples.

  1. Start Eclipse from the Desktop of the VM and open a C application example, such C_Example.
  2. If you right click the project and select "build project", it will cross compile your project for ARM architecture, suitable to run in your IGEP Processor Board.
  3. Go to the Run menu and select Run Configurations.
  4. Select your project and click RUN.
  5. When the system prompts for a user, use: root and empty password and click OK

At the console tab you will see the remote program execution.

Debugging your applications

You can also debug your applications:

  1. At the Ecplise menu, select the debug configurations and click Debug.
  2. Click the Step Over option to debug your source code.
  3. Close the communication with the stop button.