AXY:Virtual Box MIB

From SoftMC-Wiki
Jump to: navigation, search

This document describe how to install and build a MIB in a virtual box.

Abstract

There are various virtual boxes running MIB like linux systems. Each has its own purpose. This document is a tutorial to each virtual box mib.

  • General purpose Virtual MIB running ubunto
  • Light Virtual MIB for simulated MC
  • Light Virtual MIB as mini build machine

The reasoning to create an image for each machine is because various users has various uses. some may want to have a single multi purpose machine running ubunto that consume lots of resources, versus a dedicated single purpose machine. So we have decided to provide all the configurations along with detailed documentation.

General purpose Virtual MIB running ubunto

A machine running Ubunto. It provides a full working environment, such as eclipse,gitk, 3s and so on. This machine comes with two kernels, preempt rt and native ubunto kernel. The native kernel comes with ubunto installation, the preempt rt kernel provides a coherent real time operating system to run mc. A cohernet real time operating system here means a system that prioritize threads as mc expects, that is, by their priority.


Installation

First download Virtual Box for windows ( ie . if you are running windows )

Grab the virtual disks from //domainaxy/IL/MC/Linux/Ubunto-Lite-Preempt-RT. They are about 4GB combined so it would probably take some time to download. Directory

Now please follow these steps to create a virtual machine. Launch the virtual box.


vbox

Click on the New button, the bellow window will appear. Enter the word "Ubunto" and press Next.

ubunto

Next, Choose amount of RAM memory. I decided to use 1GB. The do not choose too much as it will slow the host machine.

RAM

Choose the boot disk. Choose vbox-amcs-v1-disk1 and then "Open"

Disk

You should have a bootable image ready

Disk

We need to configure it a little, so choose Settings for the ubunto machine Disk

Click "Storage". we will add an additional disk. on the sata controller, click on "Add Hard Disk " icon

Disk

The bellow window pops

Disk

choose vbox-amcs-v1-disk2 as a secondary disk

Disk

This how this operation ends

disk2

Network configration. we configure the virtual box to become part of the LAN. Click on "Network -->" "attached to" and choose Bridged Adapter.

Network

Serial Configuration. you may want to have serial ( rs232 ), as mc needs it from time to time. Click on "Serial Ports" and have "Port Numner" equal COM1

Serial

Shared folder. It is possible sometimes to share a folder between the host to the target. you may choose any directory in the host as depicted bellow

shared disk

We are done with the configuration. Click on Start . screen will be black for few seconds, and then a count down will appear. Do no do anything.

Disk

you are booting into the boot loader. There is a menu, do not do anything. ubunto is booting the preempt rt kernel

boot

ubunto loads. In the first boot the mouse may be lost of fuzzy. please reboot again . Once reboot is complete, click on the Terminal icon. Let us examine what is this machine. Enter the command "df -h" . The df command dislay part of storage file systems. There are two disks, /dev/sda and /dev/sdb. The working folder is /home/ directory. do not work in the / file system.

Xwindows


To access the virtual box you need to know its ip. please enter "ifconfig ". The ethernet netowrk interface is eth2. the assigned dhcp ip is 10.4.20.93. you probably will have a different ip.

eth

Running simulated MC

To get MC running we need to get the sources, compile them, and launch mc. Login into the Virtual box with user amcs password amcs .

ssh

To get mc simply git clone the repository

git

Now configure mc to simulated with --enable-amcssim conf

The bellow is the result of run_configure

conf

Ente make

make

This how make should end

make

If you try to launch mc you will fail. This is because some libraries are missing. All the libraries are in the Implementation/libs directory. so we need to add Implementation/libs to the library path. to see what is missing use the ldd command.

ldd

To fix the matter with the libraries, we supplied run_sim.sh script. if you try to use it as-is you bound to fail as depicted bellow.

run_sim

you have to be user root inorder to launch mc. so switch to user root. passowrd is qwerty , and change to directory /home/amcs/AMCS/Software/Versions/Implementation/ .

su

and enter source run_sim.sh

run_sim

launch MC as bellow. the failure is due to the fact that MC searches for eth0 while we do not have eth0 but eth2 root

Press cntrl+C to break the mc. Let is fix it. edit the file /FFS0/FWCONFIG and enter the line netif=eth2

Directory

Now relaunch MC.

Directory

Light Virtual MIB for simulated MC

One may want to use a light version of virtual machine. one that consume less resources. Virtual Box Ubunto consumes cpu ram and storage resources. For this we created a lighter version of virtual mib to launch MC and codeasys software.

Installation

Grab the disk images from \\domainaxy\IL\MC\Linux\CoDesys-VirtualBox\ . The disks are one for the root file system and the other is for the tool chain. You can create your own disks and add them if you wish. Storage is configured as follows:

disk

I assume you configured the network as bridged. boot the virtual box , at the end of the boot your machine should look like the bellow

login

this machine is light on storage. as you can see bellow "/" has 10MB left and /opt/ has 75 MB left. This is why i recommend you to add some disks locally.

disk

saying that we still have enough space in /opt to copy binary only mc. so first please check what is the machine's ip.

eth

Copy mc binary only ball into this machine. assuming you use windows, i suggest you use winscp.

winscp

simply drag and drop the tar ball. This tar ball is found in \domainaxy\IL\MC\Linux\mc_sim\ . It is an binary only version of MC.

winscp

Now unzip it. we use gunzip.

winscp

and untar it. use tar for that.

winscp

to run mc, simply cd mc_sim . use the source command for that. winscp

rbootp fails, we need to fix the network interface for that. edit with nano /FFS0/FWCONFIG and relaunch mc.

Light Virtual MIB build machine

Plase refer to AXY:Linux MIB#Virtual_Build_Machine.

== Getting the Virtual MIB ==