Quick task:
Connect to VPN with OpenVPN. Enable access to files through NFS and copy them through SMB.
Navodila:
1. From Directory with images of virtual computers drag twice the picture SimpleArbiterVPN and VPNClient.
2. With VirtualBox (or other programs for virtual computers) create two virtual computers and give them VPNCLient.vdi and SimpleArbiterVPN.vdi as disk for storage.
3. On both set two network interface(NAT and Internal) and run them.
4. On both VM login with username root and password kaboom .
Second part: write a program, which converts the binary record 32-bit number in decimal.
The task can be made in Java or Python. You can also write code in any text editor.
JAVA------
1. With command nano bintodec3.java create and open empty program with text editor nano
2. Write a program for converting 24-bit number in two's complement into a decimal shape
3. Click Ctrl+X, then Y and Enter, that the program is closed and stored.
4. If you don't have it, install Java sudo apt-get install openjdk-6-jdk
5. Compile program javac bintodec3.java
6. You can run and test the program java bintodec3. On the standard input are entered 24-bit numbers in hexadecimal format
PYTHON------
1. With command nano bintodec3.py create and open empty program with text editor nano
2. Write a program, which converts 24-bit number in two's complement into a decimal shape
3. Click Ctrl+X, then Y and Enter, that the program is closed and stored.
4. Start the program with command python bintodec3.py