Zum Hauptinhalt springen Zur Navigation springen Zur Fußzeile springen

Rediacc CLI installieren

Wählen Sie Ihre bevorzugte Installationsmethode

Suchen Sie Desktop-Apps oder direkte Binärdateien? Zur Download-Seite →

Erste Schritte

Neu bei Rediacc? Beginnen Sie mit den Grundlagen und lernen Sie grundlegende Konzepte.

Open Docs Quick Start

Direkter Download

Eigenständige Binärdatei, kein Paketmanager erforderlich

bash
# Linux x64
curl -fsSL https://releases.rediacc.com/cli/latest/rdc-linux-x64 -o rdc
chmod +x rdc && sudo mv rdc /usr/local/bin/

# Linux ARM64
curl -fsSL https://releases.rediacc.com/cli/latest/rdc-linux-arm64 -o rdc
chmod +x rdc && sudo mv rdc /usr/local/bin/

# macOS (Apple Silicon)
curl -fsSL https://releases.rediacc.com/cli/latest/rdc-mac-arm64 -o rdc
chmod +x rdc && sudo mv rdc /usr/local/bin/

# macOS (Intel)
curl -fsSL https://releases.rediacc.com/cli/latest/rdc-mac-x64 -o rdc
chmod +x rdc && sudo mv rdc /usr/local/bin/

# Windows x64 (PowerShell) - installs to standard location
$installDir = "$env:LOCALAPPDATA\rediacc\bin"; New-Item -ItemType Directory -Force -Path $installDir | Out-Null
Invoke-WebRequest -Uri https://releases.rediacc.com/cli/latest/rdc-win-x64.exe -OutFile "$installDir\rdc.exe"
# Add to PATH: [Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";$installDir", "User")

# Windows ARM64 (PowerShell) - installs to standard location
$installDir = "$env:LOCALAPPDATA\rediacc\bin"; New-Item -ItemType Directory -Force -Path $installDir | Out-Null
Invoke-WebRequest -Uri https://releases.rediacc.com/cli/latest/rdc-win-arm64.exe -OutFile "$installDir\rdc.exe"
# Add to PATH: [Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";$installDir", "User")

Docker

Für Container-Umgebungen

bash
# Pull the image
docker pull ghcr.io/rediacc/elite/cli:latest

# Run a command
docker run --rm ghcr.io/rediacc/elite/cli:latest --version

# Create an alias for convenience
alias rdc='docker run --rm -it -v $(pwd):/workspace ghcr.io/rediacc/elite/cli:latest'

APT (Debian / Ubuntu)

Für Debian, Ubuntu und Derivate

bash
curl -fsSL https://www.rediacc.com/apt/gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/rediacc.gpg
echo "deb [signed-by=/usr/share/keyrings/rediacc.gpg] https://www.rediacc.com/apt stable main" | sudo tee /etc/apt/sources.list.d/rediacc.list
sudo apt-get update && sudo apt-get install rediacc-cli

DNF (Fedora / RHEL)

Für Fedora, RHEL, CentOS, Rocky Linux

bash
sudo curl -fsSL https://www.rediacc.com/rpm/rediacc.repo -o /etc/yum.repos.d/rediacc.repo
sudo dnf install rediacc-cli

APK (Alpine Linux)

Für Alpine Linux und Derivate

sh
# Add the repository
echo "https://www.rediacc.com/apk/x86_64" | sudo tee -a /etc/apk/repositories

# Install (unsigned repo — use --allow-untrusted)
sudo apk update
sudo apk add --allow-untrusted rediacc-cli

Pacman (Arch Linux)

Für Arch Linux und Derivate

bash
# Add the repository to /etc/pacman.conf
echo "[rediacc]
SigLevel = Optional TrustAll
Server = https://www.rediacc.com/archlinux/\$arch" | sudo tee -a /etc/pacman.conf

# Install
sudo pacman -Sy rediacc-cli

Homebrew (macOS / Linux)

Für macOS- und Linux-Benutzer mit Homebrew

bash
brew install rediacc/tap/rediacc-cli

Installation überprüfen

bash
rdc --version

Unterstützte Architekturen

Methode Plattform x86_64 / amd64 ARM64 / aarch64
Schnellinstallation Linux
macOS
Windows
Direkter Download Linux
macOS
Windows
APT (.deb) Linux
DNF (.rpm) Linux
APK (.apk) Linux (Alpine)
Pacman (.pkg.tar.zst) Linux (Arch)
Homebrew macOS / Linux
Docker Linux / macOS / Windows