1. Dashboard
  2. Forum
    1. Unerledigte Themen
  3. Downloads
  4. Galerie
    1. Alben
  5. Toolbox
    1. Passwort Generator
    2. Portchecker
  6. Mitglieder
    1. Mitgliedersuche
    2. Benutzer online
    3. Trophäen
    4. Team
Do: 15 Mai 2025
  • Anmelden oder registrieren
  • Suche
Dieses Thema
  • Alles
  • Dieses Thema
  • Dieses Forum
  • Artikel
  • Forum
  • Dateien
  • Seiten
  • Bilder
  • Erweiterte Suche

Schön, dass du den Weg zu NodeZone.net gefunden hast! Aktuell bist du nicht angemeldet und kannst deshalb nur eingeschränkt auf unsere Community zugreifen. Um alle Funktionen freizuschalten, spannende Inhalte zu entdecken und dich aktiv einzubringen, registriere dich jetzt kostenlos oder melde dich mit deinem Account an.

Anmelden oder registrieren
    1. Nodezone.net Community
    2. Forum
    3. Server & Hosting
    4. Linux-Server

    Exile auf Linux - Hilfe Command History Aufbau

    • Fyndor
    • 19. Mai 2019 um 16:37
    • Erledigt
    • Fyndor
      Anfänger
      Reaktionen
      7
      Trophäen
      9
      Beiträge
      68
      • 19. Mai 2019 um 16:37
      • #1

      Hallo meine lieben Natives,

      ich sitz jetzt seit 1-2 Tagen an einer Commands History für einen Arma 3 Exile Server auf einem Linux Hostsystem. Leider komme ich aktuell nicht weiter voran bzw. weiß nicht was jetzt noch fehlt, bis zum ersten funktionalen Start. Eventuell haben wir hier ja noch 1-2 Geeks die sich das ganze mal angucken wollen und eventuell mir auf die Sprünge helfen können :)

      Bitte nur beteiligen wenn du verstehst was die bisherigen Befehle so machen, da bisher nur das kleine Linux 1x1 genutzt wurde.

      Code
      apt-get update && apt-get dist-upgrade -y
      adduser arma3servers
      usermod -G sudo arma3servers
      su arma3servers
      cd
      mkdir .ssh
      touch .ssh/authorized_keys
      sudo nano /root/.ssh/authorized_keys

      INPUT YOUR KEY

      Code
      sudo cp /root/.ssh/authorized_keys .ssh/authorized_keys
      sudo nano /etc/ssh/sshd_config

      Port 22 -> 2212

      #AuthorizedKeyFile .ssh/authorized_keys -> AuthorizedKeyFile .ssh/authorized_keys /home/arma3servers/authorized_keys

      #PubkeyAuthentication yes -> PubkeyAuthentication yes

      #PasswordAuthentication yes -> PasswordAuthentication no

      Code
      sudo systemctl restart sshd
      sudo apt-get install lib32gcc1 lib32stdc++6
      cd
      curl -sqL "https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz" | tar zxvf -
      cp -R /home/arma3server/steamcmd /home/arma3server/Steam
      rm -rf /home/arma3server/steamcmd*
      cd Steam/
      ./steamcmd.sh

      login YOUR_STEAM_ACCOUNT YOUR_STEAM_PASSWORD

      Enter the Steam Guard Code, if your account is protected

      quit

      Code
      mkdir /home/arma3server/A3Master
      cd /home/arma3server/Steam
      ./steamcmd.sh

      login YOUR_STEAM_ACCOUNT YOUR_STEAM_PASSWORD

      force_install_dir /home/arma3server/A3Master

      app_update 233780 validate

      quit

      Code
      cd /home/arma3server/A3Files
      touch a3update.sh
      touch a3server.sh
      nano a3server.sh
      Bash
      #!/bin/bash
      PATH=/bin:/usr/bin:/sbin:/usr/sbin
      # Hier anpassen
      #
      DATE=$(date +%Y-%m-%d_%H-%M-%S);
      LOGNAME="EXILE"
      LOG="${DATE}_${LOGNAME}"
      logPath=/home/arma3server/A3Files/log
      serverConfigDir=/home/arma3server/A3Files/serverconfig
      homePath=/home/arma3server/A3Master
      missionPath=/home/arma3server/A3Files/mpmissions
      EXILEPath=/home/arma3server/A3Files/@ExileServer/addons
      safeMissionPath=/home/arma3server/A3Files/safe/mission
      safeEXILEPath=/home/arma3server/A3Files/safe/ExileServer
      safeConfigPath=/home/arma3server/A3Files/safe/config
      uploadPath=/home/arma3server/A3Files/upload
      networkConfig=$serverConfigDir/basic.cfg
      serverConfig=$serverConfigDir/server.cfg
      profileName=Exile-Profile
      DIR=/home/arma3server/A3Files/Exile-Profile
      servermods=@ExileServer\;
      mods=@Exile\;
      BE=$DIR/battleye
      DAEMON=arma3server
      NAME=arma3server
      PARAMS="-cfg=$networkConfig -config=$serverConfig -name=$profileName -servermod=$servermods -mod=$mods -bepath=$BE -world=empty -port=2302 -noSound -loadMissionToMemory -enableHT -autoinit"
      DESC="ArmA 3 Exile Server"
      #
      # Ab hier nichts mehr ändern
      case "$1" in start)
      echo "Starte: $DESC"
      if [ -e $DIR ];
      then
      cd $DIR
      ./$DAEMON $PARAMS
      else echo "Verzeichnis $DIR nicht gefunden!"
      fi
      ;; startLoad)
      echo "Wechsle Missionsdatei und starte: $DESC"
      cd $missionPath
      mv Exile.Altis.pbo $safeMissionPath
      cd $safeMissionPath
      mv Exile.Altis.pbo ${DATE}-Exile.Altis.pbo
      cd $EXILEPath
      mv exile_server.pbo $safeEXILEPath
      cd $safeEXILEPath
      mv exile_server.pbo ${DATE}-exile_server.pbo
      cd $homePath
      mv serverconfig $safeConfigPath
      cd $safeConfigPath
      mv serverconfig ${DATE}-serverconfig
      cd $uploadPath
      cp Exile.Altis.pbo $missionPath
      cp exile_server.pbo $EXILEPath
      cp -r serverconfig $homePath
      if [ -e $DIR ];
      then
      cd $DIR
      ./$DAEMON $PARAMS >$logPath/${LOG}.rpt 2>&1
      else echo "Verzeichnis $DIR nicht gefunden!"
      fi
      ;; stop)
      if [[ `pidof $NAME` > "0" ]]
      then
      echo -n "Stoppe: $DESC"
      kill `pidof $NAME |awk -F . '{print $1}'|awk '{print $1}'`
      echo " ... fertig."
      else
      echo "Kein $DESC gefunden"
      fi
      ;; restart)
      if [[ `pidof $NAME` > "0" ]]
      then
      echo -n "Stoppe: $DESC"
      kill `pidof $NAME |awk -F . '{print $1}'|awk '{print $1}'`
      echo " ... fertig."
      else
      echo "Kein $DESC gefunden"
      fi
      echo -n "Starte: $DESC"
      cd $DIR
      ./$DAEMON $PARAMS
      echo " ... fertig."
      ;; restartLoad)
      if [[ `pidof $NAME` > "0" ]]
      then
      echo -n "Stoppe: $DESC"
      kill `pidof $NAME |awk -F . '{print $1}'|awk '{print $1}'`
      echo " ... fertig."
      else
      echo "Kein $DESC gefunden"
      fi
      echo -n "Wechsle Missionsdatei und starte: $DESC"
      cd $missionPath
      mv Exile.Altis.pbo $safeMissionPath
      cd $safeMissionPath
      mv Exile.Altis.pbo ${DATE}-Exile.Altis.pbo
      cd $EXILEPath
      mv exile_server.pbo $safeEXILEPath
      cd $safeEXILEPath
      mv exile_server.pbo ${DATE}-exile_server.pbo
      cd $homePath
      mv serverconfig $safeConfigPath
      cd $safeConfigPath
      mv serverconfig ${DATE}-serverconfig
      cd $uploadPath
      cp Exile.Altis.pbo $missionPath
      cp exile_server.pbo $EXILEPath
      cp -r serverconfig $homePath
      cd $DIR
      ./$DAEMON $PARAMS >$logPath/${LOG}.rpt 2>&1
      echo " ... fertig."
      ;; status)
      if [[ `pidof $NAME` > "0" ]]
      then
      echo "$DESC ist ONLINE"
      else
      echo "$DESC ist OFFLINE"
      fi
      ;; crash)
      if [[ `pidof $NAME` > "0" ]]
      then
      echo "Server läuft"
      else
      echo "Server nicht gefunden, neustarten ..."
      cd $DIR
      ./$DAEMON $PARAMS
      fi
      ;; *)
      echo "Benutzung: $0 {start|startLoad|stop|status|restart|restartLoad|crash}"
      exit 1
      ;; esac
      exit 0
      Alles anzeigen
      Code
      wget http://85.25.202.58/download-all-the-files/ExileServer-1.0.4a.zip
      unzip ExileServer-1.0.4.zip
      mv Arma\ 3\ Server/ Arma3Server
      cd Arma3Server
      mv tbbmalloc.dll ../../A3Master/tbbmalloc.dll
      mv @ExileServer/ ../@ExileServer
      mv mpmissions/ ../mpmissions
      cd ..
      mkdir serverconfig
      mkdir safe
      mkdir safe/mission
      mkdir safe/ExileServer
      mkdir safe/config
      mkdir log
      touch serverconfig/basic.cfg
      touch serverconfig/server.cfg
      cp -R /home/arma3server/A3Files/@ExileServer/basic.cfg serverconfig/basic.cfg
      cp -R /home/arma3server/A3Files/@ExileServer/config.cfg serverconfig/server.cfg
      nano serverconfig/server.cfg
      Alles anzeigen
      Code
      Change the following to your needs:
      
      hostname 
      (Your server name that will be represented online)
      password
      (Use only if you wish to protectyour server)
      passwordAdmin
      (Used for admin functions ingame)
      serverCommandPassword
      (Used to access server settings)
      maxPlayers
      (Server player limit)
      persistent
      (Should be set to "1" for the use of autoinitin you server launch commands)
      Change the "requiredBuild" 
      (With each Arma3 update you will need to adjust this)
      
      To change maps, scroll down to "classMissions" and change between:
      "template = Exile.Tanoa" (Only if you have Apex build installed)
      "template = Exile.Altis" (DefaultExile Map)
      Alles anzeigen
      Code
      mkdir Exile-Profile
      mkdir Exile-Profile/battleye
      mkdir mods
      cp -R Arma3Server/battleye/* Exile-Profile/battleye/
      cp -R ../A3Master/battleye/* Exile-Profile/battleye/
      mkdir upload
      cd Arma3Server
      rm -rf battleye
      cp -R keys/* ../A3Master/keys/
      rm -rf keys
      rm -rf LICENSE.txt
      cd ..
      rm -rf Arma3Server
      sudo apt-get install mariadb-server mariadb-client -y
      sudo mysql_secure_installation
      Alles anzeigen

      Give a mysql root password and check all next questions with "yes"

      Code
      cd MySQL
      rm -rf exileEscape.sql
      rm -rf upgrade-1.0.2-1.0.3.sql
      rm -rf upgrade-1.0.3-1.0.4.sql
      Code
      sudo mysql -u root
      mysql> source /home/arma3server/A3Files/MySQL/exile.sql
      mysql> CREATE USER 'exile'@'localhost' IDENTIFIED BY 'YOUR_DATABASE_PASSWORD';
      mysql> GRANT ALL privileges ON `exile`.* TO 'exile'@localhost;
      mysql> FLUSH PRIVILEGES;
      mysql> quit
      Code
      cd ..
      rm -rf MySQL
      rm -rf Arma3Server
      cd @ExileServer
      nano extdb-conf.ini
      Code
      ;; Rcon Password i.e Battleye/beserver.cfg
      Password = YOUR_RCON_PASSWORD
      [Steam]
      ;; This is for VAC Protocol for VAC Bans + Steam Friends.
      ;; https://steamcommunity.com/dev/apikey
      API Key = YOUR_STEAM_API_KEY
      [exile]
      Type = MySQL
      Name = YOUR_DATABASE_NAME
      Username = YOUR_DATABASE_USERNAME
      Password =YOUR_DATABASE_PASSWORD
      Alles anzeigen
      Code
      cd ../serverconfig
      nano basic.cfg
      touch /home/arma3server/Steam/update_arma3.txt
      Code
      // update_arma3.txt
      //
      @ShutdownOnFailedCommand 1 //set to 0 if updating multiple servers at once
      @NoPromptForPassword 1
      login YOUR_STEAM_ACCOUNT YOUR_STEAM_PASSWORD
      force_install_dir /home/arma3server/A3Master
      app_update 233780 validate
      quit
      Code
      cd/home/arma3server/Steam
      ./steamcmd.sh +runscript update_arma3.txt
      Code
      Copy following files to your Desktop, extract with PBO Manager, edit, pack with PBO Manager and upload back to Server following files:
      /home/arma3server/A3Master/@ExileServer/addons/exile_server_config.pbo
      
      CONSTRUCTION:
      permanentlyDeleteTime= 3
      (Remove all deleted items from the database after X days)
      territoryLifeTime= 7
      (Days before unpaid territory is removed)
      containerLifeTime = 10
      (Days before territory containers are removed)
      constructionLifeTime = 2
      (Days beforeconstruction outside of territory gets removed. Workbench for exsample)
      vehicleLifeTime = 3
      (Days before unused vehicles are removed)
      abandonedTime = 7
      (Set safe as abandoned)
      stolenFlagLifeTime= 3
      (Deletes a base X days after the flag is stolen)
      unlockLifeTime= 2
      (pins to 0000 and marks safes to abandoned X days after the flag is stolen)
      
      VEHICLES:
      vehiclesGridSize = 2200
      (Grid size for vehicles spawns)
      vehiclesGridAmount = 2
      (Amount of vehicles to spawn in each grid configured above)
      vehiclesDebugmarkers= 0
      (Creates global markers for debugging)
      damageChance= 20%
      (Chance for a vehicle HITPOINT to be damaged)
      maximumDamage= 0.9
      (Total amount of damage that can be applied whenspawninga vehicle)
      nightVision= 1
      (Enables or disables night vision optics on ALL vehicles)
      thermalVision = 0
      (Enables or disables thermal optics on ALL vehicles)
      unlockInSafeZonesAfterRestarts = 0
      (Set this to 1 to unlock vehicles on server boot if they are in safe zones)
      
      SERVER SETTINGS:
      serverPassword =*
      (Use servercommandpassword set in point 4)
      useAutoLock = 1
      (Autolocks server until its ready to accept players)
      restartAutoLock = 3
      (Server will autoLock at that time before restart)
      restartTimer[] = {3,0}
      (Number of hours and minutes of your restart period)
      useAutoKick = 1
      (Kicks players before restart to prevent gear loss)
      kickTime = 2
      (Time before restart that server kicks players)
      useRestartMessages = 0
      (Notifies players of server restart)
      restartWaringTime [] = {15, 10, 5, 3}
      (Number of minutes before the restart to inform your players)
      useShutdown=1
      (Forces server to shut down and close completely)
      Startup script provided in this guide will restart the server!!!!
      Alles anzeigen

      4 Mal editiert, zuletzt von Fyndor (19. Mai 2019 um 18:21)

    • Fyndor
      Anfänger
      Reaktionen
      7
      Trophäen
      9
      Beiträge
      68
      • 19. Mai 2019 um 17:04
      • #2

      Folgende Dinge an entsprechender Stelle eingefügt


      Code
      nano serverconfig/server.cfg
      Code
      Change the following to your needs:
      
      hostname 
      (Your server name that will be represented online)
      password
      (Use only if you wish to protectyour server)
      passwordAdmin
      (Used for admin functions ingame)
      serverCommandPassword
      (Used to access server settings)
      maxPlayers
      (Server player limit)
      persistent
      (Should be set to "1" for the use of autoinitin you server launch commands)
      Change the "requiredBuild" 
      (With each Arma3 update you will need to adjust this)
      
      To change maps, scroll down to "classMissions" and change between:
      "template = Exile.Tanoa" (Only if you have Apex build installed)
      "template = Exile.Altis" (DefaultExile Map)
      Alles anzeigen
      Code
      Copy following files to your Desktop, extract with PBO Manager, edit, pack with PBO Manager and upload back to Server following files:
      /home/arma3server/A3Master/@ExileServer/addons/exile_server_config.pbo
      
      CONSTRUCTION:
      permanentlyDeleteTime= 3
      (Remove all deleted items from the database after X days)
      territoryLifeTime= 7
      (Days before unpaid territory is removed)
      containerLifeTime = 10
      (Days before territory containers are removed)
      constructionLifeTime = 2
      (Days beforeconstruction outside of territory gets removed. Workbench for exsample)
      vehicleLifeTime = 3
      (Days before unused vehicles are removed)
      abandonedTime = 7
      (Set safe as abandoned)
      stolenFlagLifeTime= 3
      (Deletes a base X days after the flag is stolen)
      unlockLifeTime= 2
      (pins to 0000 and marks safes to abandoned X days after the flag is stolen)
      
      VEHICLES:
      vehiclesGridSize = 2200
      (Grid size for vehicles spawns)
      vehiclesGridAmount = 2
      (Amount of vehicles to spawn in each grid configured above)
      vehiclesDebugmarkers= 0
      (Creates global markers for debugging)
      damageChance= 20%
      (Chance for a vehicle HITPOINT to be damaged)
      maximumDamage= 0.9
      (Total amount of damage that can be applied whenspawninga vehicle)
      nightVision= 1
      (Enables or disables night vision optics on ALL vehicles)
      thermalVision = 0
      (Enables or disables thermal optics on ALL vehicles)
      unlockInSafeZonesAfterRestarts = 0
      (Set this to 1 to unlock vehicles on server boot if they are in safe zones)
      
      SERVER SETTINGS:
      serverPassword =*
      (Use servercommandpassword set in point 4)
      useAutoLock = 1
      (Autolocks server until its ready to accept players)
      restartAutoLock = 3
      (Server will autoLock at that time before restart)
      restartTimer[] = {3,0}
      (Number of hours and minutes of your restart period)
      useAutoKick = 1
      (Kicks players before restart to prevent gear loss)
      kickTime = 2
      (Time before restart that server kicks players)
      useRestartMessages = 0
      (Notifies players of server restart)
      restartWaringTime [] = {15, 10, 5, 3}
      (Number of minutes before the restart to inform your players)
      useShutdown=1
      (Forces server to shut down and close completely)
      Startup script provided in this guide will restart the server!!!!
      Alles anzeigen
    • Henne
      Nerd
      Reaktionen
      155
      Trophäen
      7
      Beiträge
      840
      Bilder
      7
      • 19. Mai 2019 um 17:22
      • #3
      Zitat von Fyndor

      ich sitz jetzt seit 1-2 Tagen an einer Commands History für einen Arma 3 Exile Server auf einem Linux Hostsystem. Leider komme ich aktuell nicht weiter voran bzw. weiß nicht was jetzt noch fehlt, bis zum ersten funktionalen Start. Eventuell haben wir hier ja noch 1-2 Geeks die sich das ganze mal angucken wollen und eventuell mir auf die Sprünge helfen können

      Ich bin jetzt ein wenig verwirrt.

      Soll das jetzt ein Tutorial sein, wie man einen Exile-Server auf Linux installiert, oder brauchst du hilfe beim installieren des Exile-Servers?

      Wenn es ein Tutorial sein soll, kannst du dir fast die hälfte davon sparen, denn jemand der Linux nutzt, sollte wissen wie man den Server absichert, MySQL und SteamCMD installiert und Arma 3 downloadet, bzw. weiß sich zuhelfen (denn SteamCMD und der download von Servern ist bei Steam gut erklärt).

    • Fyndor
      Anfänger
      Reaktionen
      7
      Trophäen
      9
      Beiträge
      68
      • 19. Mai 2019 um 17:30
      • #4

      Hallo Henne,

      ich setze mich nach langer Zeit mal wieder mit Game Servern, in diesem Fall einem Exile Server - auf Linux Servern auseinander. Dazu schreibe ich, bevor ich loslege mir die Commands soweit erstmal runter um diese vorher zu überprüfen oder zu ergänzen - also sogesagt mein "eigenes Tutorial".

      Wenn gewisse Abschnitte fertig sind, überprüfe ich diese auf Funktion und dann immer so weiter.

      An sich steamCMD und die Installation des Servers ist ja nicht das Ding - Absicherung soll auch nicht dieses "Tutorial" umfassen - das einfügen des Pubkey Verfahrens ist wie gesagt nur eben für diesen Nutzer vorgesehen gewesen und dementsprechend mit enthalten.

      Da ich noch nicht wirklich Erfahrung mit Exile Servern habe, erst Recht nicht auf Linux Systemen hatte ich nur gehofft, dass jemand mit entsprechender Erfahrung vielleicht einfach mal drüber gucken könnte ob vielleicht noch irgendwas wichtiges fehlt, irgendwo Fehler enthalten sind die ich übersehen habe oder ob man es noch irgendwie ergänzen kann.

      Sinn des ganzen:

      Funktionierender Arma 3 Exile Server mit eigenem Daemon zum einfachen starten/stoppen/neustarten/status (Verwende hier ein Restart Script von B4v4r!4n_Str!k3r ), geplanten Restarts und wenn der Standard Exile Server läuft weiteren Mods in das ganze inkludieren. Eventuell auch mit Anbindung an git, sodass bei jedem Restart neue Commits übernommen werden.

      Läuft alles hübsch, mach ich aus der Command History ein Tutorial was ich dann auch hier veröffentlichen würde ^^ Erklärungen fressen vorerst aber zu viel Zeit ^^

    • Henne
      Nerd
      Reaktionen
      155
      Trophäen
      7
      Beiträge
      840
      Bilder
      7
      • 19. Mai 2019 um 17:51
      • #5
      Zitat von Fyndor

      cp -R /home/arma3server/steamcmd /home/arma3server/Steam
      rm -rf /home/arma3server/steamcmd*

      Warum nicht mv?


      Zitat von Fyndor

      cd @ExileServer
      nano extdb-conf.ini

      ;; Rcon Password i.e Battleye/beserver.cfg
      Password = YOUR_RCON_PASSWORD
      [Steam]
      ;; This is for VAC Protocol for VAC Bans + Steam Friends.
      ;; https://steamcommunity.com/dev/apikey
      API Key = YOUR_STEAM_API_KEY

      [exile]

      Type = MySQL

      Name = YOUR_DATABASE_NAME

      Username = YOUR_DATABASE_USERNAME

      Password =YOUR_DATABASE_PASSWOR

      Alles anzeigen

      Ich habe zwar noch keinen Exile-Server aufgesetzt, aber ist die extdb-conf.ini wirklich im ExileServer und nicht im extDB-Ordner?

      Außerdem wäre es mir neu, wenn in der extdb-conf.ini der SteamAPIKey genutzt wird, oder liegt das an Exile?

      Mit Exile sollten sich Kuchenplatte und moeck auskennen. ;)

      Linux seitig würde ich zwar einiges anders machen, aber da kann ja jeder selbst entscheiden wie man es macht.

    • Fyndor
      Anfänger
      Reaktionen
      7
      Trophäen
      9
      Beiträge
      68
      • 19. Mai 2019 um 17:58
      • #6
      Zitat von Henne079

      Warum nicht mv?

      Kam so beim Tippen - beim mv müsste ich für den zip Ordner ja trotzdem sonst noch ein rm machen^^

      Zitat von Henne079

      Ich habe zwar noch keinen Exile-Server aufgesetzt, aber ist die extdb-conf.ini wirklich im ExileServer und nicht im extDB-Ordner?

      Hab noch mal schnell nachgesehen - Standardmäßig liegt die extdb-conf.ini im Pfad @ExileServer/extdb-conf.ini - Also jup, liegt dort.

      Zitat von Henne079

      Außerdem wäre es mir neu, wenn in der extdb-conf.ini der SteamAPIKey genutzt wird, oder liegt das an Exile?

      Also "default" wird er dort herein geschrieben. Die zitierten Zeilen beinhalten auch nur die, die ich Anfangs ändern würde + die DB Settings. An sich muss man den API Key natürlich nicht eintragen, wenn Spieler nicht auf VAC überprüft werden sollen.

      Zitat von Henne079

      Mit Exile sollten sich Kuchenplatte und moeck auskennen.

      Na schauen wir mal :P

      Zitat von Henne079

      Linux seitig würde ich zwar einiges anders machen, aber da kann ja jeder selbst entscheiden wie man es macht.

      Ich bin für alles offen! Gerne deine Anregungen mitteilen :P


      -------------------------------------------------------------------------

      Edit#

      Abhängigkeit hat gefehlt, steht oben nun mit drin:

      Code
      lib32stdc++6

      --------------------------------------------------------------------

      Edit#2

      Der erste Startup ergab folgenden Log:

      (Ich habe mal rot angestrichen wo scheinbar es noch Probleme gibt und herausgeschnitten aus dem Log.)

      Spoiler anzeigen
      Code
      18:08:09 SteamAPI initialization failed. Steam features won't be accessible!
      
      
      
      18:08:18 Initializing Steam Manager
      18:08:18 unable to load subscribed content list. list will be updated from steam
      18:08:18 unable to load published content list. list will be updated from steam
      18:08:18 unable to load cached items meta info. save and update functionality will be broken
      18:08:18 Steam Manager initialized.
      
      
      18:08:18 =======================
      18:08:18
      18:08:18 ============================================================================================= List of mods ===============================================================================================
      18:08:18 modsReadOnly = true
      18:08:18 safeModsActivated = false
      18:08:18 customMods = true
      18:08:18 hash = 'DB0F77DBCE8A22DC82A679BC6AE3034069F8091A'
      18:08:18 hashShort = 'f694848c'
      18:08:18                                               name |               modDir |    default |   official |               origin |                                     hash | hashShort | fullPath
      18:08:18 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
      18:08:18                                             @Exile |               @Exile |      false |      false |            NOT FOUND |                                          |           |
      18:08:18                                Arma 3 DLC Bundle 2 |           dlcbundle2 |       true |       true |            NOT FOUND |                                          |           |
      18:08:18                                Arma 3 DLC Bundle 1 |            dlcbundle |       true |       true |            NOT FOUND |                                          |           |
      18:08:18                                       Arma 3 Tanks |                 tank |       true |       true |             GAME DIR | 7cf20bae2c3aff8d12d39814ec3d7df17e39eac8 |  ff7cd557 | /home/arma3server/A3Master/tank
      18:08:18                                     Arma 3 Tac-Ops |               tacops |       true |       true |             GAME DIR | 0cb52c9a5a67c28ddf343bfc523fe1baf79c009a |  519553fc | /home/arma3server/A3Master/tacops
      18:08:18                                 Arma 3 Laws of War |               orange |       true |       true |             GAME DIR | 7ff583b1aac5ba4bf71f029bf22c3bd5170f8f9c |  c2df6009 | /home/arma3server/A3Master/orange
      18:08:18                                      Arma 3 Malden |                 argo |       true |       true |             GAME DIR | 68eaad4fb86183da6d040dac205d558b6b2fd964 |  9b7cade6 | /home/arma3server/A3Master/argo
      18:08:18                                        Arma 3 Jets |                 jets |       true |       true |             GAME DIR | 70931c97c2632137931b1e958cef91aceb318e42 |  92105d49 | /home/arma3server/A3Master/jets
      18:08:18                                        Arma 3 Apex |            expansion |       true |       true |             GAME DIR | 9a81fe92a7e7cbf2805f361219a505fd0e073b5b |  2e6af718 | /home/arma3server/A3Master/expansion
      18:08:18                                    Arma 3 Marksmen |                 mark |       true |       true |             GAME DIR | a00c9c7be90e617fc7d109647d8dd86ba794a608 |  3dfba3b9 | /home/arma3server/A3Master/mark
      18:08:18                                 Arma 3 Helicopters |                 heli |       true |       true |             GAME DIR | 367be1ff6d0b772ea663f2ad67af7f43a82b0b51 |  32953ee7 | /home/arma3server/A3Master/heli
      18:08:18                                       Arma 3 Karts |                 kart |       true |       true |             GAME DIR | 58114f985e9b204d400c591cc1a4e6e914a60656 |  f54e16d5 | /home/arma3server/A3Master/kart
      18:08:18                                        Arma 3 Zeus |              curator |       true |       true |             GAME DIR | dc03158022f8cba8946189bd573a55aedbb8da7b |  fa06fd57 | /home/arma3server/A3Master/curator
      18:08:18                                             Arma 3 |                   A3 |       true |       true |            NOT FOUND |                                          |           |
      18:08:18                                       @ExileServer |         @ExileServer |      false |      false |            NOT FOUND |                                          |           |
      18:08:18 ==========================================================================================================================================================================================================
      18:08:18 InitSound ...
      18:08:18 InitSound - complete
      18:08:18 Dedicated host created.
      18:08:18 PhysX3 SDK Init started ...
      18:08:18 PhysX3 SDK Init ended.
      18:08:20 core\skyobject\skyobject.p3d: No geometry and no visual shape
      18:08:20 a3\data_f\krater.p3d: No geometry and no visual shape
      18:08:20 a3\data_f\koule.p3d: No geometry and no visual shape
      18:08:21 Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted.
      a3_characters_f
      18:08:21 Loading movesType CfgGesturesMale
      18:08:21 Animation a3\anims_f\data\anim\sdr\gst\gestureempty.rtm not found or empty
      18:08:21 MovesType CfgGesturesMale load time 72 ms
      18:08:21 Loading movesType CfgMovesMaleSdr
      18:08:30 MovesType CfgMovesMaleSdr load time 8875 ms
      18:08:30 a3\characters_f\proxies\flag.p3d: No geometry and no visual shape
      18:08:30 BattlEye Server: Initialized (v1.217)
      18:08:30 VoteThreshold must be in 0..1 range. Defaulting to 0.5
      18:08:30 VoteThresholdSameSide must be in 0..1 range. Defaulting to 0.5
      applicationmanager.cpp (3415) : Assertion Failed: CApplicationManager::GetMountVolume: invalid index
      applicationmanager.cpp (3415) : Assertion Failed: CApplicationManager::GetMountVolume: invalid index
      applicationmanager.cpp (3578) : Assertion Failed: m_vecInstallBaseFolders.Count() > 0
      Setting breakpad minidump AppID = 107410
      18:08:30 Game Port: 2302, Steam Query Port: 2303
      18:08:30 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
      Arma 3 Console version 1.92.145639 x86 : port 2302
      18:08:30 Can't find a mission collection / mission with template name: 'Exile.Altis', skipping to next mission.
      18:08:30 Can't find a mission collection / mission with template name: 'Exile.Altis', skipping to next mission.
      18:08:30 Host identity created.
      18:08:32 Connected to Steam servers
      Alles anzeigen

      Der komplette ist hier:

      rpt.log

      4 Mal editiert, zuletzt von Fyndor (19. Mai 2019 um 18:19)

    • nox 11. Mai 2025 um 16:49

      Hat das Thema aus dem Forum Linux Hilfe nach Linux-Server verschoben.

    Registrieren oder Einloggen

    Du bist noch kein Mitglied von Native-Servers.com? Registriere dich kostenlos und werde Teil einer großartigen Community!

    Benutzerkonto erstellen

    Benutzer online in diesem Thema

    • 1 Besucher

    Wichtige Links & Informationen

    Server & Hosting-Ressourcen

      Server Administration & Hosting Basics

      Windows Server Support & Guides

      Linux Server Configuration & Help

      Setting up TeamSpeak 3 & VoIP Servers

      Domains & Web Hosting for Beginners & Professionals

      Cloud Hosting, Docker & Kubernetes Tutorials

    Gameserver & Modding-Ressourcen

      ArmA 3 Tutorials & Script Collection

      Renting & Operating Gameservers

      DayZ Server Management & Help

      FiveM (GTA V) Server & Script Development

      Rust Server Modding & Administration

      Setting up & Optimizing ARK Survival Servers

    NodeZone.net – Deine Community für Gameserver, Server-Hosting & Modding

      NodeZone.net ist dein Forum für Gameserver-Hosting, Rootserver, vServer, Webhosting und Modding. Seit 2015 bietet unsere Community eine zentrale Anlaufstelle für Server-Admins, Gamer und Technikbegeisterte, die sich über Server-Management, Hosting-Lösungen und Spielemodding austauschen möchten.


      Ob Anleitungen für eigene Gameserver, Hilfe bei Root- und vServer-Konfigurationen oder Tipps zu Modding & Scripting – bei uns findest du fundiertes Wissen und praxisnahe Tutorials. Mit einer stetig wachsenden Community findest du hier Antworten auf deine Fragen, Projektpartner und Gleichgesinnte für deine Gaming- und Serverprojekte. Schließe dich NodeZone.net an und werde Teil einer aktiven Community rund um Server-Hosting, Gameserver-Management und Modding-Ressourcen.

    Wer jetzt nicht teilt ist selber Schuld:
    1. Nutzungsbestimmungen
    2. Verhaltensregeln
    3. Datenschutzerklärung
    4. Impressum
    5. Urheberrechts- oder Lizenzverstoß melden
  • Trimax Design coded & layout by Gino Zantarelli 2023-2025©
    Community-Software: WoltLab Suite™