Ubuntu 16.04.1 LTS ia32-libs issue. - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Server (
https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (
https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Ubuntu 16.04.1 LTS ia32-libs issue. (
/showthread.php?tid=630114)
Ubuntu 16.04.1 LTS ia32-libs issue. -
Sebz - 09.03.2017
I've ran many samp servers on linux distros in my days but I can't seem to figure out what's going on here. I've downloaded and extracted the server, used chmod on the files in the folder and I've even updated as many libraries as I could think to update or install. The root of the error seems to be that you cannot install ia32-libs on the 64 bit server.
Does anyone know a workaround for this or is it just impossible to run a samp server on 16.04?
Thanks in advance.
Re: Ubuntu 16.04.1 LTS ia32-libs issue. -
dugi - 09.03.2017
ia32-libs package was removed in newer repositories, you need to install lib32stdc++6
Re: Ubuntu 16.04.1 LTS ia32-libs issue. -
Sebz - 09.03.2017
Quote:
Originally Posted by dugi
ia32-libs package was removed in newer repositories, you need to install lib32stdc++6
|
Once I figured out that they had removed the package that was the first thing I tried, I should have mentioned that more clearly. That's why I'm so confused about this.
The file seems as if it's running fine when I tell it to, but it immediately exits with no apparent error.
Re: Ubuntu 16.04.1 LTS ia32-libs issue. -
azzerking - 09.03.2017
Quote:
Originally Posted by Sebz
Once I figured out that they had removed the package that was the first thing I tried, I should have mentioned that more clearly. That's why I'm so confused about this.
The file seems as if it's running fine when I tell it to, but it immediately exits with no apparent error.
|
You did add the 32 bit architecture to the 64bit system via dpkg right? I normally write bash scripts to do this for me. So I have downloaded Ubuntu 16.04.1 and installed 32bit libraries using this:
Код:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
They are the common libraries needed and for me works for samp
Re: Ubuntu 16.04.1 LTS ia32-libs issue. -
Sebz - 09.03.2017
Quote:
Originally Posted by azzerking
You did add the 32 bit architecture to the 64bit system via dpkg right? I normally write bash scripts to do this for me. So I have downloaded Ubuntu 16.04.1 and installed 32bit libraries using this:
Код:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
They are the common libraries needed and for me works for samp
|
Tried this to no avail unfortunately. This is all that's happening when I try to run it, it's open until I press return, then it closes. I'm pretty sure it instantly closes, but there's no indication of it closing until I press return.
Код:
sampserver/samp03$ nohup ./samp03svr &
[6] 23966
sampserver/samp03$ nohup: ignoring input and appending output to 'nohup.out'
[6] Exit 1 nohup ./samp03svr
Re: Ubuntu 16.04.1 LTS ia32-libs issue. -
Sebz - 09.03.2017
Figured out the issue. The gamemode wasn't typed properly, FeelsBadMan.
Re: Ubuntu 16.04.1 LTS ia32-libs issue. -
Djole1337 - 10.03.2017
aight.