Hello,
And after installing stage did you add the location to your path in your bashrc file? For me using 64bit version of linux I had to add a new location to my LD_LIBRARY_PATH.
In your home folder, edit the file .bashrc with nano for example
<nabble_embed>nano .bashrc</nabble_embed>
And add (end of file) the following line, assuming you installed stage in the default location:
<nabble_embed># Add this for Stage
LD_LIBRARY_PATH=/usr/local/lib64:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH</nabble_embed>
for 32bit I think you have to add the following line:
<nabble_embed># Add this for Stage
LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH</nabble_embed>
Success!
Regards,