Little help with sound quality on mx simulator in Linux

Post anything about MX Simulator here. Please. I'm begging you.
Post Reply
suuhoo
Posts: 3
Joined: Tue Feb 27, 2018 3:41 am
Team: Privateer

Little help with sound quality on mx simulator in Linux

Post by suuhoo »

Hello

Thinking about migrating from window to linux. Dualbooting now to see if all of the important stuff is working.

When trying to run mx, with this command:

Code: Select all

sudo ./mx
I get this:
error while loading shared libraries: libasound.so.2: cannot open shared object file: No such file or directory

Searched on the internett and found this:

Code: Select all

sudo apt-get install libasound2:i386
After that I got a new message: error while loading shared libraries: libXi.so.6: cannot open shared object file: No such file or directory.

After installing multiple packages this finally worked:

Code: Select all

sudo apt-get install libxrender1:i386 libxtst6:i386 libxi6:i386
So now I can run mx like on windows, but the sound is really bad. Does anybody of you know how to fix the sound?
jlv
Site Admin
Posts: 14931
Joined: Fri Nov 02, 2007 5:39 am
Team: No Frills Racing
Contact:

Re: Little help with sound quality on mx simulator in Linux

Post by jlv »

The sound quality on Linux will be a little worse than Windows with DirectSound since it's a software mixer that doesn't even interpolate samples when resampling frequencies. (Basically the sound equivalent of bilinear vs point sampled texture mapping in graphics.) Shouldn't be a huge difference though.

Also, it's a bad idea to run the game with sudo. You don't want it running as root. Run it with ./mx so it'll run as a normal user.
Josh Vanderhoof
Sole Proprietor
jlv@mxsimulator.com
If you email, put "MX Simulator" in the subject to make sure it gets through my spam filter.
suuhoo
Posts: 3
Joined: Tue Feb 27, 2018 3:41 am
Team: Privateer

Re: Little help with sound quality on mx simulator in Linux

Post by suuhoo »

Ok. Thank's for taking your time to answer me :)
Post Reply