Posted April 24, 2016
I got X3: Terran War Pack running on a fresh installation of Ubuntu 16.04 64bit, but there were a few hoops I had to go through to get it working since the game executable is 32-bits.
First, enable executing 32-bit programs, as per http://askubuntu.com/questions/454253/how-to-run-32-bit-app-in-ubuntu-64-bit:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
After that, I had to install the following libraries to get the games started without errors:
sudo apt-get install libgl1-mesa-glx:i386 libgtk2.0-0:i386 libcanberra-gtk-module:i386 libasound2:i386 libpulse0:i386
Then, I managed to reduce the number of warnings with the following libraries:
sudo apt-get install gnome-themes-standard:i386 gtk2-engines:i386 gtk2-engines-pixbuf:i386
That should get the game running. I get an error message "X3 - Terran Conflict is not responding." during the initial splash screen, but the game starts anyways.
Happy gaming!
First, enable executing 32-bit programs, as per http://askubuntu.com/questions/454253/how-to-run-32-bit-app-in-ubuntu-64-bit:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
After that, I had to install the following libraries to get the games started without errors:
sudo apt-get install libgl1-mesa-glx:i386 libgtk2.0-0:i386 libcanberra-gtk-module:i386 libasound2:i386 libpulse0:i386
Then, I managed to reduce the number of warnings with the following libraries:
sudo apt-get install gnome-themes-standard:i386 gtk2-engines:i386 gtk2-engines-pixbuf:i386
That should get the game running. I get an error message "X3 - Terran Conflict is not responding." during the initial splash screen, but the game starts anyways.
Happy gaming!