This is your first tutorial about using OpenRDK. After reading this tutorial, you will be able to compile your local copy of the OpenRDK and to launch the first application.

Installation and compilation

In order to install, compile and use OpenRDK, you need some external package. Every linux distribution has its own package manager (Synaptic for Ubuntu, Adept for Kubuntu, Yum for Fedora). You have to open the package manager and to install the following ones (if not installed yet):

Download the source code of the OpenRDK from the SourceForge repository, either the .tgz archive or the .tar.bz2 archive. Type:

tar xzvf OpenRDK-???.tgz
or
tar xjvf OpenRDK-???.tar.bz2
in which ??? is the version number that you downloaded. After that, enter in the src subdirectory. Type:
cmake .
This will configure and prepare the software to be compiled on your machine. Check if something is wrong and try to solve the problems; after that, type:
. setenv
make
go to take a cup of coffee and wait for the OpenRDK to be compiled. The setenv script need to be run every time you want to compile or to run some OpenRDK application, since it sets some environment variables needed for everything to work.