Page 1 of 1

libc.so.6: version 'GLIBC_2.15' not found

Posted: Wed Jul 22, 2015 12:14 am
by Incinirate
So, I'm trying to run 0.12 from a Turnkey Linux Distro as a server using the '--start-server' option, but when I try to run it, I get these errors:

Code: Select all

/lib/i386-linux-gnu/libc.so.6: version 'GLIBC_2.15' not found
/lib/i386-linux-gnu/libm.so.6: version 'GLIBC_2.15' not found
However, those files do exist, as I can see them with ls
Any help is appreciated! Thanks!

PS: The errors are truncated of redundant information

Re: libc.so.6: version 'GLIBC_2.15' not found

Posted: Wed Jul 22, 2015 1:26 am
by Incinirate
The problem was I had GLIBC_2.13, this post helped me update to 2.19 though.
http://stackoverflow.com/questions/1086 ... -on-debian

Re: libc.so.6: version 'GLIBC_2.15' not found

Posted: Tue Jun 07, 2016 11:44 am
by Sulpitz
For me, on a Debian 7 wheezy server, the following method worked. Also this way, you don’t have to install or upgrade glibc system wide.
Method can be found here: http://crunchbang.org/forums/viewtopic. ... 18#p367918
The download for libc6_2.15-0ubuntu10.15_amd64.deb did not work for me, but you can get it here: http://packages.ubuntu.com/precise-upda ... 6/download
My start scrip looks like this:

Code: Select all

#!/bin/bash
LD_LIBRARY_PATH=/usr/local/ldlib/x86_64-linux-gnu:/usr/lib /home/gameserver/factorio/factorio_0.12.29/bin/x64/factorio --start-server save.zip "$@"
Make sure the path is correct. Also this is for a 64 bit system.

Re: libc.so.6: version 'GLIBC_2.15' not found

Posted: Sat Nov 26, 2016 8:05 pm
by horse
Sulpitz wrote:For me, on a Debian 7 wheezy server, the following method worked. Also this way, you don’t have to install or upgrade glibc system wide.
Method can be found here: http://crunchbang.org/forums/viewtopic. ... 18#p367918
The download for libc6_2.15-0ubuntu10.15_amd64.deb did not work for me, but you can get it here: http://packages.ubuntu.com/precise-upda ... 6/download
My start scrip looks like this:

Code: Select all

#!/bin/bash
LD_LIBRARY_PATH=/usr/local/ldlib/x86_64-linux-gnu:/usr/lib /home/gameserver/factorio/factorio_0.12.29/bin/x64/factorio --start-server save.zip "$@"
Make sure the path is correct. Also this is for a 64 bit system.
Thanks mate, worked like a charm :)