This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
app-notes:virtualisation [2016/12/01 12:56] – klueppel | app-notes:virtualisation [2018/08/03 13:04] (current) – removed preisig | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== LXC 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 or NB3800 | ||
- | * LXC arm container | ||
- | |||
- | ===== Resources ===== | ||
- | |||
- | You can find some example LXC Container here: | ||
- | |||
- | * [[ftp:// | ||
- | * [[ftp:// | ||
- | |||
- | |||
- | ===== Configuration ===== | ||
- | |||
- | - Download the container | ||
- | - Open GUI and go to System → Virtualization | ||
- | - Click + to add container | ||
- | - By settings, choose type, create a description and select storage. Root file system will be set automatically | ||
- | - If you want to enable networking, go to “Networking”, | ||
- | - You should see a following screen (if you chose extended storage, the path will have storage1 instead of storage0: ''/ | ||
- | - Transfer the downloader container (you can use WinSCP) to the router and put in ''/ | ||
- | - Unpack the container: < | ||
- | - Check access rights using < | ||
- | - If the created folder has rights 644, change them* to 755: < | ||
- | - The extracted container contains rootfs directory. You need to copy the content of it to the specified root file system. Go to jessie folder: < | ||
- | - Type < | ||
- | - Information about container can be accesed by typing < | ||
- | - Now you can attach to the container by typing < | ||
- | |||
- | * Later you should remove executable permission bits from some system files, start container in foreground mode < | ||
- | |||
- | ===== 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 < | ||
- | |||