diff --git a/agent-linux/README.md b/agent-linux/README.md index 232a9d0..dd15e76 100644 --- a/agent-linux/README.md +++ b/agent-linux/README.md @@ -18,22 +18,17 @@ Linux/Proxmox Agent für das RMM-System. Sammelt Systemdaten und ermöglicht Rem ## Installation -1. **Binary kompilieren:** +1. **Repo auf dem Zielsystem klonen und Binary bauen:** ```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 ``` -2. **Auf Zielsystem installieren:** +2. **Installationsskript ausführen:** ```bash - # Dateien kopieren - 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 + cd /opt/rmm/agent-linux chmod +x install.sh ./install.sh ```