У нас вы можете посмотреть бесплатно [ NIX OS / STEAM ] Arma 3 Modded Dedicated Server Setup или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Thanks NixOs for making my life that much easier. This video is a tutorial on how to get a steam server up and running in a Nix OS dedicated server using 2 commands. Also sorry, YouTube doesn't allow me to put links in the description, for some reason Nix Pkgs used: steamcmd steam-run Steamcmd commands: login username app_update 233780 validate exit I cant post links but google "arma 3 dedicated server configuration" and you will quickly find the walk through for the server.cfg file basic "start_server" command (From the installation directory): ./arma3server_x64 -name=server -config=server.cfg -mod=mod1 -mod=mod2 Mods must be placed on the same directory of arma3server_x64 (making sure everyone gets the memo). And I just "copy pasted" the mods from the steam-workshop folder in my arma instalation into the server itself, renamed the folders and made sure the .pbo files where all lowercase with the command bellow. Nothing else. Command to turn all files in a directory to lowercase (might be useful for the addon folder of your mods): for a_file in *;do mv -v "$a_file" `echo "$a_file" | tr [:upper:] [:lower:]` ;done;