Hi,
open a shell (terminal) and enter:
export MESA_GL_VERSION_OVERRIDE=2.1
export LIBGL_ALWAYS_SOFTWARE=1
then go to the installation directory and start TmoleX, e.g.:
cd ~/COSMOlogic/TmoleX15/TmoleX
./TmoleX15
if you can see the molecules, add the two lines (export ...) to the TmoleX15 script. If you open it in an editor, it starts with:
#!/bin/sh
# Uncomment the following line to override the JVM search sequence
# INSTALL4J_JAVA_HOME_OVERRIDE=
# Uncomment the following line to add additional VM parameters
# INSTALL4J_ADD_VM_PARAMS=
INSTALL4J_JAVA_PREFIX=""
GREP_OPTIONS=""
change that to
#!/bin/sh
# Uncomment the following line to override the JVM search sequence
# INSTALL4J_JAVA_HOME_OVERRIDE=
# Uncomment the following line to add additional VM parameters
# INSTALL4J_ADD_VM_PARAMS=
export MESA_GL_VERSION_OVERRIDE=2.1
export LIBGL_ALWAYS_SOFTWARE=1
INSTALL4J_JAVA_PREFIX=""
GREP_OPTIONS=""
Then you should be able to start TmoleX15 directly using the icon on the desktop.
Regards,
Uwe