This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
app-notes:virtualisation [2016/07/18 11:13] – [Hello World in Python] sypianski | app-notes:virtualisation [2018/08/03 13:04] (current) – removed preisig | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Virtualization ====== | ||
- | |||
- | Virtualization gives customers the possiblity to execute their own applications. Usage of containers allows to isolate the applications and the entire OS images from the other processes which are running on a host system. | ||
- | |||
- | This tutorial shows how to get started with it using LXC container. | ||
- | |||
- | ===== Prerequisites ===== | ||
- | |||
- | NetModule Router NB2800 | ||
- | |||
- | ===== Configuration ===== | ||
- | |||
- | - Download the container jessie.tgz | ||
- | - Transfer it (you can use WinSCP) to the router and put in ''/ | ||
- | - Unpack it using < | ||
- | - Open GUI and go to System -> Virtualization. | ||
- | - Click ‘+’ (add) to add container. | ||
- | - Set type, description, | ||
- | - Click on //Edit// button (the one to the left of //Delete// button), go to " | ||
- | - Create a new session using SSH client (for example Putty) {{ : | ||
- | - Log in as root | ||
- | - Attach to the specified container < | ||
- | |||
- | ===== Installing nano/vim editor ===== | ||
- | |||
- | By default, no text editor is installed. I recommend installing two most popular editors, namely vim and nano. | ||
- | |||
- | Being attached to the container (root@jessie: | ||
- | |||
- | When a line similar to the following appears: //After this operation, 27.9 MB of additional disk space will be used. Do you want to continue? [Y/n]//, type ' | ||
- | |||
- | |||
- | |||
- | ===== Hello World in C ===== | ||
- | |||
- | - First of all we need to install gcc: GNU Compiler Collection | ||
- | - At the beginning, update the packages by typing < | ||
- | - Subsequently install the compiler by typing < | ||
- | - Now create and open a .c file using nano editor < | ||
- | - Type following code: <code c hello.c ># | ||
- | int main() | ||
- | { | ||
- | printf(" | ||
- | return 0; | ||
- | } | ||
- | </ | ||
- | - Save it using Ctrl + O (German keyboard: Strg + O) | ||
- | - Exit using Ctrl + X (German keyboard: Strg + X) | ||
- | - Compile the program using gcc < | ||
- | - Type < | ||
- | - The created file has rights 644. Change it to 755 < | ||
- | - Type < | ||
- | |||
- | ===== Hello World shell script ===== | ||
- | |||
- | - Create and open file using nano editor < | ||
- | - Type following code: <code bash helloBash > | ||
- | #!/bin/bash | ||
- | echo "Hello World" | ||
- | </ | ||
- | - Save it using Ctrl + O (German keyboard: Strg + O) | ||
- | - Exit using Ctrl + X (German keyboard: Strg + X) | ||
- | - Type < | ||
- | - The created file has rights 644. Change it to 755 < | ||
- | - Type < | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | ===== Hello World in Python ===== | ||
- | |||
- | - First of all we need to install Python | ||
- | - At the beginning, update the packages by typing < | ||
- | - Subsequently install Python by typing < | ||
- | - Create and open a .py file using nano editor < | ||
- | - Type following code: <code python helloPt.py> | ||
- | - Save it using Ctrl + O (German keyboard: Strg + O) | ||
- | - Exit using Ctrl + X (German keyboard: Strg + X) | ||
- | - Run the program using < | ||
- | |||