Fast rundown of what worked for me to get ProQuake server running on Ubuntu 9.10 x32 (non-server distro)...
I then installed Q1 from the original CD thru Dosbox on my Win7 box to get the .pak files and copied them (actually, i copied everything) to the /home/skrag/quake1 on my server.
IF YOUR PAK FILES AND ID1 directory are uppercase you need to re-name them!!
then
and finally
To run the server.
I set up my options in the optional autoexec.cfg in the /home/skrag/quake1/id1/ you have to create it yourself and populate it with stuff like
and it will run on startup.
To get the server to run in a diffrent screen
this is usefull if you are using SSH and you want the server to continue to run after you exit the terminal
to get a list of your "screens" use
to get your screen back use
But I cant for the life of me find out how to set up a map rotation, if anyone has any suggestions on how to get a map rotation going in ProQuake, i will be eternally greatfull!!
Code:
mkdir /home/skrag/quake1 cd quake1 wget http://quakeone.com/proquake/proquake-linux-dedicated-390-rc2.zip unzip proquake-linux-dedicated-390-rc2.zip
I then installed Q1 from the original CD thru Dosbox on my Win7 box to get the .pak files and copied them (actually, i copied everything) to the /home/skrag/quake1 on my server.
IF YOUR PAK FILES AND ID1 directory are uppercase you need to re-name them!!
Code:
mv ID1 id1 cd id1 mv PAK0.PAK pak0.pak mv PAK1.PAK pak1.pak
Code:
cd /home/skrag/quake1 sudo chmod 777 pqlinux
Code:
./pqlinux
I set up my options in the optional autoexec.cfg in the /home/skrag/quake1/id1/ you have to create it yourself and populate it with stuff like
Code:
hostname "SODOMY" deathmatch 1 maxclients 8 fraglimit 30 noexit 2 teamplay 0 timelimit 10 map dm1
To get the server to run in a diffrent screen
Code:
screen -A -m -d -S sweetserver1 ./pqlinux
this is usefull if you are using SSH and you want the server to continue to run after you exit the terminal
to get a list of your "screens" use
Code:
screen -list
Code:
screen -r sweetserver1
But I cant for the life of me find out how to set up a map rotation, if anyone has any suggestions on how to get a map rotation going in ProQuake, i will be eternally greatfull!!
Comment