Hello everyone!
I just installed the linux version. There are some things you have to take care of, before it runs. Of course this is only to be expected, it's just the way things work in linux.
First of all the installer won't start if you don't have a graphics driver active that supports at least openGL 3.0. That means you have to install the drivers from NVIDIA (easy) or AMD (tricky). I'm not sure if it will work with Intel at all. The standard vga driver ubuntu installs does not support the openGL 3.0 or 4.0 features on your graphics card, so it won work. (As far as I know, that is.)
Once you got that sorted out, there are some packages (libraries) you need to have installed before running the esenthel installer. I tried several ones and can't see in my terminal history which were really needed and which were not. And perhaps I had some of them already installed which other people do not have. Hopefully we can refine this list when more people test the linux installer.
This took care of it for me:
Code:
sudo apt-get update
sudo apt-get install unixodbc libcg libcggl freeglut3-dev mesa-common-dev
After that, the installer did its job.
When trying to compile a tutorial, i needed some more packages:
Code:
sudo apt-get install libxi-dev libxinerama-dev libxmu-dev libopenal-dev libXcursor-dev unixodbc-dev
That took care of the unresolved libraries while linking. For the moment I am stuck. While compiling i now get:
Code:
undefined reference to glXSwapIntervalEXT
undefined reference to glXCreateContextAttribsARB
I got the same when I first tried to run the installer. I solved this by installing the AMD driver for my graphics card. So it should be a development package related to that. But I have not found it yet. I suspect that this is dependant on whether you have an NVIDIA or an AMD card.
Iĺl have another look tomorrow.
Cheers,
yvan