How I run Artemis Spaceship Bridge Simulator on Devuan ceres
I like to play Artemis Spaceship Bridge Simulator with my friends. To install my licensed Artemis 2.7.0 game on Devuan using Wine, I use the official Debian instructions for installing the Buster version of winehq-devel.
sudo su -
dpkg --add-architecture i386 # needed for winehq.org packages
wget -O- -nc https://dl.winehq.org/wine-builds/winehq.key | apt-key add -
{
echo "# And for Debian Buster this one:"
echo "deb https://dl.winehq.org/wine-builds/debian/ buster main"
} >> /etc/apt/sources.list.d/winehq.list
apt-get update
apt-get install -y winehq-devel winetricks
I was having a problem getting the game to run, and after much Internet searching I found what I think is the working solution!
wine regedit
Set this value:
HKCU\Software\Wine\Direct3D\UseGLSL=disabled
I was warned that this is very experimental and might break wine in unintended ways, so be very careful when applying this. If Artemis works without setting this registry key, then do not set the registry key.
Comments