Arduino & Ubuntu --> Unable to locate include files.

The correct filename is Arduino.h. This will cause the error you encountered in case sensitive operating systems. Please change:

#include <arduino.h>

to"

#include <Arduino.h>

and your problem will be solved.