
> Configuration

	Prior running g15-sysstats you will most probably want to customize the config file, mcdopes.conf
	The options there are commented well so you should have no problems with the configuration.

> Running

	To run g15-sysstats `cd` to the folder where you extracted the archive and type either
	`./Debug/g15-sysstats &` to start the debug version, or,
	`./Release/g15-sysstats &` to start the release version.
	(Don't forget the & at the end, else it will block your current console)

	Note: 	It wont work if you run it from any other folder(!!), i suggest to write a little script 			for launching it. This could look like mine:

		#!/bin/bash
		cd /home/mcdope/workspace/g15-sysstats 
		./Release/g15-sysstats

