I don't think there's any problem with the startup script.
The script file, penumbra, looks like this for me:
#!/bin/sh
gamepath=`dirname ${0}`
cd $gamepath > /dev/null
chcon=`which chcon`
if [ -n "$chcon" ]; then
$chcon -t textrel_shlib_t lib/libSDL-1.2.so.0 2> /dev/null
fi
export LD_LIBRARY_PATH=./lib
./penumbra.bin "$@"
if [ $? -ne 0 ]; then
echo Penumbra exited unexpectedly, please check
echo ${HOME}/.frictionalgames/Penumbra Overture/Episode1/hpl.log
echo for any error messages
echo Also try running
echo ulimit -c unlimited
echo And re-running Penumbra and try and recreate the error
echo then submit the generated core file or stack trace
fi
cd - > /dev/null
I don't know how to disable SELinux, but according to the rights tab of Gnome, SELinux context is unknown.
I will reinstall the game and try to run it
without the update applied.
Let's see if at least another error pops up.
Thanks for your help so far!!