docs: agent-linux README auf Git-Clone umgestellt (kein scp mehr)

This commit is contained in:
cynfo3000 2026-03-06 09:45:07 +01:00
parent d096922479
commit 39c168e946

View File

@ -18,22 +18,17 @@ Linux/Proxmox Agent für das RMM-System. Sammelt Systemdaten und ermöglicht Rem
## Installation ## Installation
1. **Binary kompilieren:** 1. **Repo auf dem Zielsystem klonen und Binary bauen:**
```bash ```bash
apt install -y git golang-go
git clone https://git.cynfo.net/christian/rmm2.git /opt/rmm
cd /opt/rmm
make agent-linux VERSION=1.0.0 make agent-linux VERSION=1.0.0
``` ```
2. **Auf Zielsystem installieren:** 2. **Installationsskript ausführen:**
```bash ```bash
# Dateien kopieren cd /opt/rmm/agent-linux
scp build/rmm-agent-linux root@target-host:/tmp/
scp agent-linux/install.sh root@target-host:/tmp/
scp agent-linux/rmm-agent-linux.service root@target-host:/tmp/
scp agent-linux/config.yaml.example root@target-host:/tmp/
# Installation
ssh root@target-host
cd /tmp
chmod +x install.sh chmod +x install.sh
./install.sh ./install.sh
``` ```