-
Content Count
54 -
Joined
-
Last visited
-
Medals
Everything posted by magaman
-
Arma 3 STABLE Server 2.18 "profiling / performance binary" feedback
magaman replied to Dwarden's topic in ARMA 3 - SERVERS & ADMINISTRATION
no linux update ? -
Linux Dedicated Server feedback
magaman replied to dazhbog's topic in ARMA 3 - SERVERS & ADMINISTRATION
I get the same error but our missions work. Your issue seems to be line 360: CreateBoundSocket: ::bind couldn't find an open port between 2303 and 2303 -
Difficulties in setting difficulties post 1.58
magaman replied to fourjays's topic in ARMA 3 - SERVERS & ADMINISTRATION
my launcher shows recruit but the game browser shows custom. I joined my server and it is using the custom. -
Getting stuck on the MP loading screen
magaman replied to colonelhartigan's topic in ARMA 3 - TROUBLESHOOTING
same here. What I've found out is the server I host I can't join, stuck at map screen with load bar at 80%. Everyone else can join it. We have a hosted server that I can join. Another issue is after the missions download it hangs and have to disco then reconnect and can finally join missions. This never happened til the update. By the way both servers are the same mods. -
[SOLVED] Linux Arma3Profile not working
magaman replied to SageNTitled's topic in ARMA 3 - SERVERS & ADMINISTRATION
I just made it executable and it works: chmod +x -
Linux Dedicated Server feedback
magaman replied to dazhbog's topic in ARMA 3 - SERVERS & ADMINISTRATION
mine updated to 1.10 using steamcmd ./steamcmd.sh +login (name) (pw) +force_install_dir (dir) +app_update 233780 validate -
A3 Linux server and mods problem
magaman replied to alduric's topic in ARMA 3 - SERVERS & ADMINISTRATION
./arma3server -port=2322 -cpuCount=4 -config=config.cfg -mods=@cba_a3\;@acre\;@jayarma3lib Cba should load 1st and for linux you need to use \; to seperate mods. This is my startup: ./arma3server -config=a3.cfg -config=server.cfg -netlog -port=2302 -mods=@CBA_A3\;@ACRE_A3\;@JayArma2Lib_A3\;@Nimitz\;@ALiVE\;@LEA_A3\;@NATO_Russian_SF_Weapons\;@POMI_PMC\;@RH_M4_A3\;@sthud_a3\;@tmr\;@FA18_A3\;@VTS_Music -
Linux Dedicated Server feedback
magaman replied to dazhbog's topic in ARMA 3 - SERVERS & ADMINISTRATION
using the arma2 start file someone posted here can load the mods. But for some reason it loads all but the ACRE mod. Anyone know why? #!/bin/bash # # armaserver: ArmA 2 Linux Dedicated Server Control Script # © 2010 BIStudio # ArmA 2 binary version must be 1.04 or later # ## ## slightly addapted by DaOarge for Arma3 ## #======================================================================= #======== CONFIGURATION PARAMETERS ======== #======== MUST BE EDITED MANUALLY TO FIT YOUR SYSTEM PARAMETERS ======== #======================================================================= ARMA_DIR=/home/yourserverfolder CONFIG=server.cfg CFG=a3.cfg PORT=2302 PIDFILE=${ARMA_DIR}/${PORT}.pid RUNFILE=${ARMA_DIR}/${PORT}.run LOGFILE=${ARMA_DIR}/log.a3pub.${PORT}.txt SERVER=${ARMA_DIR}/arma3server #OTHERPARAMS="-cpucount=2" OTHERPARAMS="-cpucount=2 -exthreads=7" MODS=@CBA_A3\;@ACRE_A3\,@JayArma2Lib_A3\;@Nimitz\;@ALiVE\;@LEA_A3\;@NATO_Russian_SF_Weapons\;@POMI_PMC\;@RH_M$_A3\;@sthud_a3\;@tmr\;@FA18_A3\;@VTS_Music #======================================================================= ulimit -c 1000000 case "$1" in start) if [ -f ${RUNFILE} ]; then $0 stop fi echo "Starting A3 PUBLIC server..." # file to mark we want server running... echo "go" >${RUNFILE} # launch the background watchdog process to run the server nohup </dev/null >/dev/null $0 watchdog & ;; stop) echo "Stopping A3 PUBLIC server..." if [ -f ${RUNFILE} ]; then # ask watcher process to exit by deleting its runfile... rm -f ${RUNFILE} fi # and terminate ArmA 2 server process if [ -f ${PIDFILE} ]; then kill -TERM $(< ${PIDFILE}) if [ -f ${PIDFILE} ]; then rm -f ${PIDFILE} fi fi ;; status) if [ -f ${RUNFILE} ]; then echo "A3 PUBLIC server should be running..." else echo "A3 PUBLIC server not running check logfile..." fi if [ -f ${PIDFILE} ]; then PID=$(< ${PIDFILE}) echo "PID file exists (PID=${PID})..." if [ -f /proc/${PID}/cmdline ]; then echo "Server process seems to be running..." fi fi ;; check) echo -n "ArmA 2 directory: ${ARMA_DIR} " if [ -d ${ARMA_DIR} ]; then echo "OK" else echo "MISSING!" fi echo -n "Server executable: ${SERVER} " if [ -x ${SERVER} ]; then echo "OK" else echo "ERROR!" fi echo "Port number: ${PORT}" echo -n "Config file: ${CONFIG} " if [ -f ${CONFIG} ]; then echo "OK" else echo "MISSING!" fi echo "PID file: ${PIDFILE}" echo "RUN file: ${RUNFILE}" ;; restart) $0 stop $0 start ;; watchdog) # this is a background watchdog process. Do not start directly while [ -f ${RUNFILE} ]; do # launch the server... cd ${ARMA_DIR} echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Starting server (port ${PORT})..." ${SERVER} >>${LOGFILE} 2>&1 -config=${CONFIG} -cfg=${CFG} -port=${PORT} -pid=${PIDFILE} -mod=${MODS} ${OTHERPARAMS} if [ -f ${RUNFILE} ]; then echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Server died, waiting to restart..." sleep 5s else echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Server shutdown intentional, watchdog terminating" fi done ;; *) echo "$0 (start|stop|restart|status|check)" ;; esac ---------- Post added at 16:49 ---------- Previous post was at 16:29 ---------- nm found the missing ; -
New OS, dam unrar, help needed
magaman replied to soulfly83's topic in ARMA 2 & OA - Servers & Administration
ubuntu doesn't rar by default. did you install unrar ? -
New OS, dam unrar, help needed
magaman replied to soulfly83's topic in ARMA 2 & OA - Servers & Administration
tar jxvf <filename>.tar.bz2 -
ARMA 2: Operation Arrowhead - Linux Server beta 1.62.101906
magaman replied to Dwarden's topic in ARMA 2 & OA - Servers & Administration
crash my server. Went back to previous version and works fine. My log looks like ^^^^^^^^^^^^^ ubuntu 12.04 with 8gig ram -
ARMA 2: Operation Arrowhead - Linux Server beta 1.62.100000
magaman replied to Dwarden's topic in ARMA 2 & OA - Servers & Administration
Running good. Only problem I have is server shows red. Any idea why? -
When I try to do ./server on my linux server I get this.
magaman replied to Donazal16's topic in ARMA 2 & OA - Servers & Administration
open arma2oaserver and add this: CFG=arma2oa.cfg -
ARMA 2: Operation Arrowhead - Linux Server beta 1.62.98099
magaman replied to Dwarden's topic in ARMA 2 & OA - Servers & Administration
Yes, nice to have linux servers back. TY -
Arma2 OA Ubuntu Server
magaman replied to AbouSanchez's topic in ARMA 2 & OA - Servers & Administration
ARMA_DIR=/ CONFIG=server.cfg CFG= OTHERPARAMS='-cfg=arma2oa.cfg -cpucount=4' should be: ARMA_DIR=/home/aladin ? CONFIG=server.cfg CFG=arma2oa.cfg OTHERPARAMS='-cpucount=4' Also if running mods cba has to be 1st. =@cba\;@cba_a2\;@cba_oa\;@ace\;@acex\;@acex_ru\;@acex_sm\;@acex_usnavy\;@ofrp\;@fallujah\;pmc\;baf not sure about pmc and baf. and no \; on the end some files are owned by root those need to be changed. -
Arma2 OA Ubuntu Server
magaman replied to AbouSanchez's topic in ARMA 2 & OA - Servers & Administration
do not use sudo ./arma2oaserver start -
A.C.R.E - Advanced Combat Radio Environment - 1.4 Stable - Release Thread
magaman replied to noubernou's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
Cannot find an older version to download. As far as beta goes, the last 2 betas were fixes for the previous beta. Betas break more than they fix lol. -
A.C.R.E - Advanced Combat Radio Environment - 1.4 Stable - Release Thread
magaman replied to noubernou's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
This radio is a great thing on servers with alot of people. Any way of making it so it DOESNT require the beta? -
Debian 6 ArmA 2 CO Server is not working
magaman replied to thedelta's topic in ARMA 2 & OA - Servers & Administration
The default ports are 2302-2305 have to be open. -
Debian 6 ArmA 2 CO Server is not working
magaman replied to thedelta's topic in ARMA 2 & OA - Servers & Administration
I see 2 things wrong.: server.cfg does not have a mission loading thats why you get wait for host. In your startup change MODS to MOD -
ARMA 2: OA beta build 97448 (1.62 MP compatible build, post 1.62 release)
magaman replied to Dwarden's topic in ARMA 2 & OA - BETA PATCH TESTING
Right, with no filter it works. Here's what I found out. If filter is already in there when game is started no servers will show. If you remove filter then servers will show. Then filter again and it works. So basically start game, remove filters, then refilter and it works. -
ARMA 2: OA beta build 97448 (1.62 MP compatible build, post 1.62 release)
magaman replied to Dwarden's topic in ARMA 2 & OA - BETA PATCH TESTING
My filter doesnt work either. If I start the game without the beta it works fine. -
ARMA 2: Operation Arrowhead - Linux Server beta 1.62.97240
magaman replied to Dwarden's topic in ARMA 2 & OA - Servers & Administration
Working great on ubuntu 12.4 64 with 32libs installed. Thank You bis. -
Sorry to say that kind of thing happens alot after the introduction of the dayz mod. If your looking for some good gaming you can join us.
-
what linux distro are you guys using for your server?
magaman replied to mike187's topic in ARMA 2 & OA - Servers & Administration
Centos 5.8 64bit