Difference between revisions of "AXY:Virtual Box MIB"
(→Stand alone Eclipse Configuration) |
(→Stand alone Eclipse Configuration) |
||
Line 9: | Line 9: | ||
== Stand alone Eclipse Configuration == | == Stand alone Eclipse Configuration == | ||
− | + | This is a short document explains how to configure eclipse on top of the virtual build machine. | |
+ | |||
+ | |||
{| style="border-spacing:0;" | {| style="border-spacing:0;" | ||
| style="border:0.5pt solid #00000a;padding-top:0in;padding-bottom:0in;padding-left:0.075in;padding-right:0.075in;"| <center>Step</center> | | style="border:0.5pt solid #00000a;padding-top:0in;padding-bottom:0in;padding-left:0.075in;padding-right:0.075in;"| <center>Step</center> | ||
Line 53: | Line 55: | ||
|} | |} | ||
− | + | Builds commands in eclipse are depicted bellow. | |
sh -c "ssh build@192.168.56.101 'make -C /media -j2'" | sh -c "ssh build@192.168.56.101 'make -C /media -j2'" | ||
− | + | [[File:eclipsebuild.png|picture|eclipse build command]] | |
− | [[File:eclipsebuild.png| | ||
− |
Revision as of 15:33, 16 October 2012
This document describe how to install and build a MIB in a virtual box.
Abstract
There are several usage for the Virtual Box MIB.
- Virtual MIB as a build machine
- Virtual MIB as a Codeasys
Stand alone Eclipse Configuration
This is a short document explains how to configure eclipse on top of the virtual build machine.
|
|
|
|
|
|
Open shell | sh | ||
|
Create a user | adduser build | Linux will ask for password, type “qwerty” for example | |
|
Create rsa keys | ssh-keygen | Passphrase must be empty | |
|
Copy key to VBOX | ssh-copy-id build@192.168.56.101 | SSH will ask for password, type “qwerty” | |
|
Check connection | ssh build@192.168.56.101 | Ssh shall not ask for password! |
Builds commands in eclipse are depicted bellow.
sh -c "ssh build@192.168.56.101 'make -C /media -j2'"