🐧 AMP Gameserver Panel - Linux Native Setup

Linux-Spezifische Hinweise: Dieser Guide ist speziell für Linux-Systeme optimiert und nutzt native Linux-Funktionen.

🏆 Vorteile der Linux-Installation

🛠 Linux-Systemvoraussetzungen

Distributions-Empfehlung: Ubuntu Server LTS wird für optimale Kompatibilität empfohlen.

🖥️ Systemvorbereitung


# System aktualisieren
sudo apt update && sudo apt upgrade -y

# Benötigte Abhängigkeiten installieren
sudo apt install -y wget curl software-properties-common
    

📦 AMP Installation

Installationsmethoden

  1. Offizielles Installationsskript
  2. Manueller Download
  3. Docker-Container

# Offizielles Installationsskript
wget -O - https://cubecoders.com/downloads/installamp.sh | sudo bash
    
Sicherheitshinweis: Führe Installationsskripte nur von vertrauenswürdigen Quellen aus.

🔧 Systemd Service Management


# AMP als Systemd-Dienst
sudo systemctl status ampinstmgr
sudo systemctl start ampinstmgr
sudo systemctl enable ampinstmgr
    

🌐 Firewall-Konfiguration


# UFW Ports freischalten
sudo ufw allow 8080/tcp
sudo ufw allow 25555/tcp
sudo ufw enable
    

⚡ Performance-Optimierung


# Swap-Speicher hinzufügen
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
    

🤝 Linux-Spezifischer Support