Hello citizens,
Today I decided to try StarMade on Linux and ran into the seemingly notorious issue of having no sound. Since I like using Steam I was trying to find a way to still run the game through Steam but make the sound work and found a solution, so I thought I'd share it since no one else has yet.
I am using Linux Mint. This means the guide should work as is in Ubuntu as well (and probably every other distro but I can't vouch for that, please reply if you try these instructions in a different setup).
Sources:
No Sound / Sound stuttering : StarMade Support
Sound on Linux
PS: Dear Schine, der_scheme has already provided a java method that can solve this problem years ago, why do we still have to go in the trouble of fixing this ourselves? [Linux] No Sound (dev solution inside)
EDIT: Just realized what the above proposal is and though it's not the proper way to be done, it can still be solved some way programmatically I'm sure!
Today I decided to try StarMade on Linux and ran into the seemingly notorious issue of having no sound. Since I like using Steam I was trying to find a way to still run the game through Steam but make the sound work and found a solution, so I thought I'd share it since no one else has yet.
I am using Linux Mint. This means the guide should work as is in Ubuntu as well (and probably every other distro but I can't vouch for that, please reply if you try these instructions in a different setup).
- Open your StarMade installation directory (probably ~/.local/share/Steam/steamapps/common/StarMade), you can find it using Steam, just click the game's Properties -> Local Files -> Browse local files... button.
- Rename "starmade-launcher" to "starmade-launcher.bin"
- Create a new empty file called "starmade-launcher"
- Paste the following contents inside:
Code:#!/bin/sh export LD_LIBRARY_PATH="$PWD/StarMade/native/linux:$LD_LIBRARY_PATH" ./starmade-launcher.bin --steam
- Make "starmade-launcher" executable. If you don't know how to do this, try your file manager's properties dialog under permissions. If you can't do it that way, open a terminal and type:
Code:cd ~/.local/share/Steam/steamapps/common/StarMade chmod +x starmade-launcher
Sources:
No Sound / Sound stuttering : StarMade Support
Sound on Linux
PS: Dear Schine, der_scheme has already provided a java method that can solve this problem years ago, why do we still have to go in the trouble of fixing this ourselves? [Linux] No Sound (dev solution inside)
EDIT: Just realized what the above proposal is and though it's not the proper way to be done, it can still be solved some way programmatically I'm sure!
Last edited: