Jump to content

viper.cless

Member
  • Content Count

    66
  • Joined

  • Last visited

  • Medals

Everything posted by viper.cless

  1. Try to forward UDP 2304 also. At least the arma linux server is listening on 2304 UDP and not on 2303 UDP, so why would the windows version. Make sure ICPM echo request are answered and not dropped by your firewall.
  2. Torrent Mirror http://85.25.152.129/ARMA2OACORFT_Update_162.zip.torrent
  3. yes i am v1.60.87589 It seems you don't run ace on your client when trying to start the mission on the server.
  4. This is from you server log? :confused: Imho the client will receive this kind of message if it does not not run all required mods.
  5. I am using this in my "arma2oaserver" script:
  6. I use a quoted string. OTHERPARAMS="-mod=@cba;@ace;@acex;@acex_usnavy;@acex_ru;fallujah"
  7. Make sure all filesname are lowercase too. *nix is case sensitive. Use tolower in your arma server folder to convert file and foldernames recursively. It will work, but i suggest you don't run the server using root privileges.
  8. viper.cless

    Insurgency

    Roger that. :) http://dev-heaven.net/issues/27426
  9. viper.cless

    AMT v 1.4 Release

    Outstanding work! Thank you guys. The Gepard 1A2 Tank is awesome :D
  10. viper.cless

    Insurgency

    Same issue here using ArmA OA 1.60 and latest ACE version 1.13 build 522.
  11. Torrent Mirror http://85.25.152.129/ARMA2OACORFT_Update_160.zip.torrent
  12. torrent mirror: http://85.25.152.129/ARMA2OA_Patch_1_56.zip.torrent
  13. Thanks, I used the rar package and the signatures are valid now.
  14. There seems to be a signature issue with the 1.55 COMPAT patch. I got kicked for wrong signatures of acre related files like acre_main.pbo, acre_api.pbo, ... Can anybody confirm this? Or is my acre installation broken? In the servers log file I found several messages like "Spieler Viper: Falsche Signatur für Datei @acre\addons\acre_api.pbo" which means "player Viper: wrong signature for file @acre\addons\acre_api.pbo"
  15. viper.cless

    Arma 2:OA Update 1.50-1.54 To 1.55 ???

    Added torrent mirror for ARMA2OA_Patch_1_50_to_1_55.zip http://85.25.152.129/ARMA2OA_Patch_1_50_to_1_55.zip.torrent
  16. viper.cless

    Linux 1.07 Dedi question

    Adding the variable to the Configuration Params section isn't sufficient. You just defined a script variable named OTHERPARAMS, but the variables value is never passed to the server executable. You need to edit the line ${SERVER} >>${LOGFILE} 2>&1 -server -config=${CONFIG} -port=${PORT} -pid=${PIDFILE} in the arma2server script too by appending ${OTHERPARAMS}
  17. You did create/edit the file on windows, right? Unix text files have only the line feed as their newline character whereas Windows text files have carriage return and line feed pairs as their newline characters. ^M is the carriage return character and is parsed as part of the interpreter name. I suggest you install the package tofrodos aptitude install tofrodos and run the command dos2unix arma2server.sh from your arma2 folder in order to fix the file.
  18. viper.cless

    Debian Linux server-arma2$ command Not Found.

    IIRC you wont need them unless you want to build debian packages. apt-get install gcc already installed all required packages. Don't worry about this message Its just because the corresponding command call in the script doesn't specify the redicrect explicitly. I don't know what is causing these messages. Take a look at this post http://forums.bistudio.com/showpost.php?p=1565052&postcount=5 No, . is not the root folder. . is an alias for the current directory, so is .. for the parent directory. Thats why you use ./server command for example. which means 'execute the server binary found in the current directory' or cd .. to go to the parent directory. The root of you filesystem is / You can print the current directory with the command pwd ('print working directory') Maybe its a good idea to replace the ARMA_DIR value with the absolute path of your installation folder. Yes. And I just realized that no pid file is created on my system, strange :) In /etc/rc.d/init.d you find configuration files used by the init process. Init is the parent of all processes and spawned when booting up your linux. By linking the script into /etc/rc.d/init.d and using chkconfig you would be able to configure the start of your armaserver on system boot. AFAIK the default on debian systems is to use update-rc.d instead of chkconfig, thats why chkconfig isn't installed on your system.
  19. viper.cless

    Debian Linux server-arma2$ command Not Found.

    You are right, you need to pass the proper filename to the tar command.(see man tar) Nevertheless do you have the error message? As mentioned in the readme you have to install the GNU C Compiler (gcc) Run the command apt-get install gcc as user root. The install script requires a compiler to compile the tolower.c file (written in the c programming language) into an binary file called tolower. You or the install script can then use the command ./tolower to convert the file and folder names to lower case. Ctrl + C does signal the process to abort asap. Use the command ./server only to test your installation. The proper way to start/stop the server is by running the arma2server script. ./arma2server start or ./arma2server stop Don't forget to edit the configuration parameters at the beginning of the arma2server script file. The script will also restart the arma2 server automatically in case of a crash. IMHO it's always a good idea not to run a service as user root unless it must have root privileges. FYI http://community.bistudio.com/wiki/ArmA:_Dedicated_Server#Linux I don't know what this message is about.
  20. viper.cless

    Debian Linux server-arma2$ command Not Found.

    Just use tar -xjf server-x.xx.tar.bz2 to extract the files and run the install script ./install Maybe you need to run it with sh ./install if the executable flag isn't set for the install script. arma2$ isn't a command. take it as an example for a shell prompt to indicate that you should run the commands from your arma2 folder.
  21. One interface and one IP. No DNS issue with arma2pc.master.gamespy.com.
  22. Same problem here. It seems to be some gamespy masterserver problem as I found those message in the server log :confused: 109/11/23, 13:01:53 Warning Message: No challenge value was received from the master server. 109/11/23, 13:01:53 GameSpy QR2 error: 5, No challenge value was received from the master server.
  23. Find the line starting with ${SERVER} >>${LOGFILE} 2>&1 -server -config=${CONFIG} in the arms2server script and add your mod option -mod=@bwmod at the end. Valid parameters for the arma2server script are start|stop|restart|status|check
×