Skip to content
  • 0 Unread 0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Collapse

Plutonium

  1. Home
  2. BO2 Server Hosting Support
  3. Server on Linux Debian

Server on Linux Debian

Scheduled Pinned Locked Moved BO2 Server Hosting Support
2 Posts 2 Posters 353 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Sitheyundefined Offline
    Sitheyundefined Offline
    Sithey
    wrote on last edited by
    #1

    Hello,

    i would like to create my own server on my linux vps

    i tried to setup my server with this tutorial https://forum.plutonium.pw/topic/12870/guide-debian-t6-server-on-linux-vps-dedicated-server but unfortunatly this tutorial is outdated

    my actual configuration:

    #!/bin/bash
    ## Variable Region
    _script="$(readlink -f ${BASH_SOURCE[0]})" 
    # Delete last component from $_script
    _mydir="$(dirname $_script)"
    # Name of the server shown in the title of the terminal window
    NAME="SERVER_NAME"
    # Your Game Path (where there is binkw32.dll)
    PAT="Multiplayer/"
    # Paste the server key from https://platform.plutonium.pw/serverkeys
    KEY="xxx"
    # Name of the config file the server should use. (default: dedicated.cfg)
    CFG=dedicated.cfg
    # Port used by the server (default: 4976) -> Don't forget to allow server port in ufw fail2ban
    PORT=4976
    # Game Mode ( Multiplayer / Zombie ) -> ( t6mp / t6zm )
    MODE=t6mp
    ## End Region
    
    ## Update Region
    # Plutonium game dir
    INSTALLDIR="plutonium/"
    
    # Update your server game file
    ./plutonium-updater -d "$INSTALLDIR"
    ## End Region
    
    ## Server Start Region
    echo -e '\033]2;'Plutonium - $NAME - Server restart'\007'
    echo "Visit plutonium.pw | Join the Discord (plutonium) for NEWS and Updates!"
    echo "Server "$NAME" will load $CFG and listen on port $PORT UDP!"
    echo "To shut down the server close this window first!"
    printf -v NOW '%(%F_%H:%M:%S)T' -1
    echo ""$NOW" $NAME server started."
    
    while true
    do
    wine .\\bin\\plutonium-bootstrapper-win32.exe $MODE $PAT -dedicated +start_map_rotate +set key $KEY +set net_port $PORT +set sv_config $CFG 2> /dev/null
    printf -v NOW '%(%F_%H:%M:%S)T' -1
    echo ""$NOW" WARNING: $NAME server closed or dropped... server restarting."
    sleep 1
    done
    ## End Region
    

    https://prnt.sc/6VgoRvpIcLUf

    and i got this error:

    https://prnt.sc/nKMT6vmgKCVR

    could some one send me a tutorial to give me a possibility to create my own server, i am using debian 10

    Regards

    SaladTomatoOnionundefined 1 Reply Last reply
    0
    • Sitheyundefined Sithey

      Hello,

      i would like to create my own server on my linux vps

      i tried to setup my server with this tutorial https://forum.plutonium.pw/topic/12870/guide-debian-t6-server-on-linux-vps-dedicated-server but unfortunatly this tutorial is outdated

      my actual configuration:

      #!/bin/bash
      ## Variable Region
      _script="$(readlink -f ${BASH_SOURCE[0]})" 
      # Delete last component from $_script
      _mydir="$(dirname $_script)"
      # Name of the server shown in the title of the terminal window
      NAME="SERVER_NAME"
      # Your Game Path (where there is binkw32.dll)
      PAT="Multiplayer/"
      # Paste the server key from https://platform.plutonium.pw/serverkeys
      KEY="xxx"
      # Name of the config file the server should use. (default: dedicated.cfg)
      CFG=dedicated.cfg
      # Port used by the server (default: 4976) -> Don't forget to allow server port in ufw fail2ban
      PORT=4976
      # Game Mode ( Multiplayer / Zombie ) -> ( t6mp / t6zm )
      MODE=t6mp
      ## End Region
      
      ## Update Region
      # Plutonium game dir
      INSTALLDIR="plutonium/"
      
      # Update your server game file
      ./plutonium-updater -d "$INSTALLDIR"
      ## End Region
      
      ## Server Start Region
      echo -e '\033]2;'Plutonium - $NAME - Server restart'\007'
      echo "Visit plutonium.pw | Join the Discord (plutonium) for NEWS and Updates!"
      echo "Server "$NAME" will load $CFG and listen on port $PORT UDP!"
      echo "To shut down the server close this window first!"
      printf -v NOW '%(%F_%H:%M:%S)T' -1
      echo ""$NOW" $NAME server started."
      
      while true
      do
      wine .\\bin\\plutonium-bootstrapper-win32.exe $MODE $PAT -dedicated +start_map_rotate +set key $KEY +set net_port $PORT +set sv_config $CFG 2> /dev/null
      printf -v NOW '%(%F_%H:%M:%S)T' -1
      echo ""$NOW" WARNING: $NAME server closed or dropped... server restarting."
      sleep 1
      done
      ## End Region
      

      https://prnt.sc/6VgoRvpIcLUf

      and i got this error:

      https://prnt.sc/nKMT6vmgKCVR

      could some one send me a tutorial to give me a possibility to create my own server, i am using debian 10

      Regards

      SaladTomatoOnionundefined Offline
      SaladTomatoOnionundefined Offline
      SaladTomatoOnion
      wrote on last edited by
      #2

      Sithey said in Server on Linux Debian:

      Hello,

      i would like to create my own server on my linux vps

      i tried to setup my server with this tutorial https://forum.plutonium.pw/topic/12870/guide-debian-t6-server-on-linux-vps-dedicated-server but unfortunatly this tutorial is outdated

      my actual configuration:

      #!/bin/bash
      ## Variable Region
      _script="$(readlink -f ${BASH_SOURCE[0]})" 
      # Delete last component from $_script
      _mydir="$(dirname $_script)"
      # Name of the server shown in the title of the terminal window
      NAME="SERVER_NAME"
      # Your Game Path (where there is binkw32.dll)
      PAT="Multiplayer/"
      # Paste the server key from https://platform.plutonium.pw/serverkeys
      KEY="xxx"
      # Name of the config file the server should use. (default: dedicated.cfg)
      CFG=dedicated.cfg
      # Port used by the server (default: 4976) -> Don't forget to allow server port in ufw fail2ban
      PORT=4976
      # Game Mode ( Multiplayer / Zombie ) -> ( t6mp / t6zm )
      MODE=t6mp
      ## End Region
      
      ## Update Region
      # Plutonium game dir
      INSTALLDIR="plutonium/"
      
      # Update your server game file
      ./plutonium-updater -d "$INSTALLDIR"
      ## End Region
      
      ## Server Start Region
      echo -e '\033]2;'Plutonium - $NAME - Server restart'\007'
      echo "Visit plutonium.pw | Join the Discord (plutonium) for NEWS and Updates!"
      echo "Server "$NAME" will load $CFG and listen on port $PORT UDP!"
      echo "To shut down the server close this window first!"
      printf -v NOW '%(%F_%H:%M:%S)T' -1
      echo ""$NOW" $NAME server started."
      
      while true
      do
      wine .\\bin\\plutonium-bootstrapper-win32.exe $MODE $PAT -dedicated +start_map_rotate +set key $KEY +set net_port $PORT +set sv_config $CFG 2> /dev/null
      printf -v NOW '%(%F_%H:%M:%S)T' -1
      echo ""$NOW" WARNING: $NAME server closed or dropped... server restarting."
      sleep 1
      done
      ## End Region
      

      https://prnt.sc/6VgoRvpIcLUf

      and i got this error:

      https://prnt.sc/nKMT6vmgKCVR

      could some one send me a tutorial to give me a possibility to create my own server, i am using debian 10

      Regards

      Follow the tutorial of Minami : https://github.com/Sterbweise/T6Server
      https://youtu.be/lwxOAc2gzIk

      1 Reply Last reply
      0

      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

      With your input, this post could be even better 💗

      Register Login
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Unread 0
      • Recent
      • Tags
      • Popular
      • Users
      • Groups