Rune Central
http://forums.runecentral.com/

Linux Server
http://forums.runecentral.com/viewtopic.php?f=13&t=1180
Page 1 of 1

Author:  lunchbox [ Sun Jul 30, 2006 12:33 pm ]
Post subject:  Linux Server

I'm trying to host a dedicated server for RQuake on the secondary proc of my arch-linux machine. I was going to use the recommended sqpro engine for doing it, but couldn't find a copy. I tried using the newest version of the darkplaces-dedicated linux server, however when running the RQuake mod it presents the following error:

^7Server listening on address 0.0.0.0:26000
^7Host_Error: PRVM_EDICT_NUM: server: bad number -705712 (called at prvm_execprogram.h:204)
^7Quake Error: Host_Error: PRVM_EDICT_NUM: server: bad number -705712 (called at prvm_execprogram.h:204)

Any thoughts?

edit:

Also tried fteqw linux-dedicated server and it crashed with the error:

======== FTE QuakeWorld Initialized ========
couldn't exec server.cfg
couldn't exec ftesrv.cfg
IP address 192.168.1.111:27500
IP address [c0a8:016f:0000:0000:0000:0000:0000:0000]:27501
Using NQ progs
Loaded progs.dat
<progs.dat>
: InternalInit
: worldspawn

COM_WriteFile: ssqccore.txt
SV_Error: OP_LOAD references invalid entity in InternalInit
Server ended
Fatal error: SV_Error: OP_LOAD references invalid entity in InternalInit

./RQuake-ftewq: line 4: 8034 Segmentation fault ./fteqw -game rquake -dedicated 8 -noipx -condebug -heapsize 32768 -zone 1024 -udpport 26000 +map intro

Author:  Slot Zero [ Sun Jul 30, 2006 1:56 pm ]
Post subject:  Re: Linux Server

lunchbox wrote:
I was going to use the recommended sqpro engine for doing it, but couldn't find a copy.


Here is proquake (sqpro) 3.50,

ftp://ftp.runequake.com/quake/engines/p ... pro350.zip

The official proquake website is,

http://proquake.planetquake.gamespy.com/

you could also use,

http://www.proquake.com/

Author:  RocketGuy [ Sun Jul 30, 2006 7:28 pm ]
Post subject: 

here is sqpro-r:
http://www.quake-1.com/rquake-dist/sqpro.7z

you should use that, the original sqpro is not suitable for rquake.
we will be releasing rquake 1.2 very soon (this week) so you might want to wait until that's done before setting your server up.

Author:  Baker [ Sun Jul 30, 2006 11:07 pm ]
Post subject: 

In the RQuake package, the sqpro-r comes in a zip, although maybe the documentation wasn't good enough indicating where that was:

c:\quake\rquake\devkit\engine-sources\linux-dedicated-server-sqpro-r.zip

It would be in the above location, adjusted to where RQuake was actually installed.

/just for future reference

Author:  lunchbox [ Mon Jul 31, 2006 6:04 pm ]
Post subject: 

@Baker
Yeah, I didn't see sqpro in the engine sources. I guess I just read over it in the manual or something. thanks for the reply.

@Rocketguy
Ok, I'll hold off on setting up the server. thanks for the heads up

@Slot Zero
thanks for the quick reply, I think I'll take Rocketguy's advice and hold off until v1.2 is out.

Question:
I've been hearing of trouble with libvga in sqpro. Is this going to be a problem in v1.2 and are there any quick fixes. I'm running SVGALib 1.9 branch on the server machine to render several other projects and I am scared that since rquake seems to be compiled with <=1.4 branch that I'm going to have issues.

Thanks all!

Author:  RocketGuy [ Mon Jul 31, 2006 8:38 pm ]
Post subject: 

libvga problems shouldn't affect you if you're running a dedicated server.

Author:  Baker [ Mon Jul 31, 2006 9:27 pm ]
Post subject: 

RocketGuy, I've heard that libvga problems do affect compiling the dedicated server. It seemed to be a problem for div0.

Someone who is more of a Linux expert like Slot or Magnesium or even Canadian Sniper might be able to confirm or correct me on this.

Maybe ask Aalchemy if this is true?

Author:  RocketGuy [ Tue Aug 01, 2006 8:42 am ]
Post subject: 

maybe, but he doesn't have to compile, i gave him the link to already compiled sqpro.

Author:  lunchbox [ Tue Aug 01, 2006 2:07 pm ]
Post subject: 

Rocketguy, I experienced the following error while running the file you linked:

./sqpro.dat: error while loading shared libraries: libvga.so.1: cannot open shared object file: No such file or directory

I saw a precompiled binary of the old vgalib on the svgalib website I think I will try that next.

However, is there anyway to make the darkplaces-dedicated server or fteqw server (both support qw and netquake) work with RQuake?

They don't seem to have any dependencies other than the optional libCURL library for file transfers and also the optional ZLIB for running compressed files.

Author:  Baker [ Tue Aug 01, 2006 2:58 pm ]
Post subject: 

Unfortunately, RQuake doesn't work with DarkPlaces or FTEQW -- uses some non-standard QCCX QuakeC for string manipulation and other things not possible without it that don't work on heavily modified Quake engines.

SQPRO-R can be compiled from the source:

- Quake Engine Source Code (Download). This is needed since the ProQuake src is not the full project.
- ProQuake Engine Source (http://www.proquake.com)
- RQuake's three changed source files (download)

Basically take the Quake engine source, overlay the ProQuake source according to the readme and then overlay the 3 changed engine source files with the RQuake enginesrc.zip.

That's as much as I know. I can compile the engine in Windows, but I personally know little about Linux and have heard that compiling in Linux is not necessarily easy. I hope that was enough information to be helpful.

Author:  lunchbox [ Thu Aug 03, 2006 1:43 pm ]
Post subject: 

Thanks Baker, I was getting ready to compile from source (it is linux after all) when I decided to give the precompiled svgalib from the the official svgalib website a try. Surprisingly, all you have to do is copy the libvga.so.1 file from their website to /lib. Unfortunately there was an incompatibility with my version of libm.so.6 (it was looking for libm.so.5). A symlink (ln -s /lib/libm.so.6 /lib/libm.so.5) got sqpro to run as a dedicated server.

Unfortunately, it says that modified games can't be run from a shareware copy of Quake. This is strange seeing as how I can host a normal Quake1 Coop game using the same pak0.pak and pak1.pak and play e4m1 without a hitch on darkplaces or fteqw. I believe this warrants further investigation. I will post an update if I can figure out what its babbling about.

(still waiting patiently for the 1.2 release :D )

Author:  RocketGuy [ Thu Aug 03, 2006 1:56 pm ]
Post subject: 

well.. is your quake shareware?

Author:  Baker [ Thu Aug 03, 2006 5:32 pm ]
Post subject: 

lunchbox wrote:
Thanks Baker, I was getting ready to compile from source (it is linux after all) when I decided to give the precompiled svgalib from the the official svgalib website a try. Surprisingly, all you have to do is copy the libvga.so.1 file from their website to /lib. Unfortunately there was an incompatibility with my version of libm.so.6 (it was looking for libm.so.5). A symlink (ln -s /lib/libm.so.6 /lib/libm.so.5) got sqpro to run as a dedicated server.

Unfortunately, it says that modified games can't be run from a shareware copy of Quake. This is strange seeing as how I can host a normal Quake1 Coop game using the same pak0.pak and pak1.pak and play e4m1 without a hitch on darkplaces or fteqw. I believe this warrants further investigation. I will post an update if I can figure out what its babbling about.

(still waiting patiently for the 1.2 release :D )


RQuake uses a number of monsters from the registered version of Quake.

Btw ... the registered version of Quake is PAK1.PAK.

Shareware Quake is pak0.pak

Registered Quake is pak0.pak + pak1.pak.

The server has to be running the registered version of Quake, so do the clients.

Pak1.pak contains Vores, Hell Knights, Fish, Enforcers and all maps E2M1 thru E4M8 (see map reference, http://www.runequake.com/maps )


Anyway, I glad you successfully compiled it. That makes you far more Linux knowledgeable than me, hehe

If you need more help keep posting. :D

Author:  Lardarse [ Fri Aug 04, 2006 8:49 pm ]
Post subject: 

Baker wrote:
Pak1.pak contains Vores, Hell Knights, Fish, Enforcers and all maps E2M1 thru E4M8

YOU FORGOT SHUB!!!

Author:  Baker [ Fri Aug 04, 2006 11:46 pm ]
Post subject: 

I forgot about the END map. :D

(I'm sure there are other things in pak1.pak anyway)

Author:  lunchbox [ Mon Aug 07, 2006 10:46 am ]
Post subject: 

Wow, yeah I got the thing running but this whole registered version thing has really got me. I'm 100% sure this is registered as I copied it from my original quake1 CD from back in the day. I can play all the levels and have many times. SQpro just seems to hate it... I'll keep playing with it.

edit:
I remember doing the transparent water vis patch on the old pak files long ago. Could this lead to the program failing to recognize the pak files? I'm really grasping at straws at this point.

Author:  Baker [ Mon Aug 07, 2006 12:53 pm ]
Post subject: 

Vised water should not make a difference, RocketGuy's servers maps are vised. You might compare your pak files with these ones (Look like originals).

Did you change to the proper directory in Linux before the executable starts?

Author:  RocketGuy [ Mon Aug 07, 2006 2:36 pm ]
Post subject: 

sorry for the hold up on releasing 1.2, we have a few laziness issues over here :P

Page 1 of 1 All times are UTC - 5 hours [ DST ]
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/