Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Alright, thanks guys. I'll see if I can get a workaround going in the short term but might have to wait it out.
sudo apt-get install libxrandr2:i386 libglu1-mesa:i386 libxcursor1:i386
Thanks... J^ga, you bloody observant legend :D And the guy who figured out the workaround :P
Yes, just added the 32 bit libs and it works perfectly. Thanks everyone. Linux FTW!
if [ $(getconf LONG_BIT) = 64 ]; then
LC_ALL=C ./7DaysToDie.x86_64 -logfile 7DaysToDie_Data/output_log.txt $@
else
LC_ALL=C ./7DaysToDie.x86 -logfile 7DaysToDie_Data/output_log.txt $@
fi
And for x32 version it is actually:
sudo apt-get install libxrandr2:i386 libglu1-mesa:i386 libxcursor1:i386 libpulse0:i386
libpulse0:i386 - to get the sound
And there is also a problem with non-US locales (as usual).
in the file 7DaysToDie.sh you should prepend the launch command with LC_ALL=C
like that:
LC_ALL=C ./7DaysToDie.x86 -logfile 7DaysToDie_Data/output_log.txt $@
Appreciate any help!
The file looked like this in the end:
#!/bin/sh
export LD_LIBRARY_PATH=~/.local/share/Steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu
#export MALLOC_CHECK_=0
if [ $(getconf LONG_BIT) = 64 ]; then
./7DaysToDie.x86_64 -logfile 7DaysToDie_Data/output_log__`date +%Y-%m-%d__%H-%M-%S`.txt $@
else
./7DaysToDie.x86 -logfile 7DaysToDie_Data/output_log__`date +%Y-%m-%d__%H-%M-%S`.txt $@
fi
I don't complain, Linux has gotten so boring lately i am happy when something is NOT
working out of the box.