This is an old revision of the document!
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
Configuration
Download the container jessie.tgz
Transfer it (you can use WinSCP) to the router and put in
/mnt/storage/<name>
(for example
/mnt/storage/OS
)
Unpack it using
tar -xvzf <jessie.tgz>
Open
GUI and go to System โ Virtualization.
Click โ+โ (add) to add container.
Set type, description, root filesystem (
/mnt/storage/OS/lxc/jessie/rootfs
in this case) and networking interface.

Press Apply.
Create a new session using SSH client (for example Putty)

Log in as root
Attach to the specified container
lxc-attach -n <name>
in this example:
lxc-attach -n guest0
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:~# displayed in the left corner of the CLI), type
apt-get install <name>
,where <name> is either 'vim' or 'nano'.
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 'y' and confirm by pressing enter.
Hello World in C
First of all we need to install gcc: GNU Compiler Collection
At the beginning, update the packages by typing
apt-get update
Subsequently install the compiler by typing
apt-get install gcc
Now create and open a .c file using nano editor
nano hello.c
Type following code:
- hello.c
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
Save it using Ctrl + O (German keyboard: Strg + O)
Exit using Ctrl + X (German keyboard: Strg + X)
Compile the program using gcc
gcc hello.c -o hello
-
The created file has rights 644. Change it to 755
chmod 755 hello
Type
./hello
to run the program
Hello World shell script
Create and open file using nano editor
nano helloBash
Type following code:
- helloBash
#!/bin/bash
echo "hello world"
Save it using Ctrl + O (German keyboard: Strg + O)
Exit using Ctrl + X (German keyboard: Strg + X)
-
The created file has rights 644. Change it to 755
chmod 755 helloBash
Type
./helloBash
to run the program
Hello World in Python
First of all we need to install Python
At the beginning, update the packages by typing
apt-get update
Subsequently install Python by typing
apt-get install python
Create and open a .py file using nano editor
nano helloPt.py
Type following code:
- helloPt.py
print "Hello world"
Save it using Ctrl + O (German keyboard: Strg + O)
Exit using Ctrl + X (German keyboard: Strg + X)
Run the program using
python helloPt.py