Zum Hauptinhalt springen Zur Navigation springen Zur Fußzeile springen
Begrenzte Zeit: Design Partner Programm. BUSINESS Plan kostenlos für immer.

Rediacc CLI installieren

Wähle deine Installationsmethode

Suchst du nach Desktop-Apps oder direkten Binärdateien? Zu den Downloads →

Erste Schritte

Neu bei Rediacc? Hier starten. Lernen Sie die Grundlagen und richten Sie Ihre erste Sicherung schnell ein.

Open Docs Quick Start

Direkter Download

Direkte Binärdatei, kein Paketmanager nötig

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

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

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

# macOS (Intel)
curl -fsSL https://releases.rediacc.com/cli/stable/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/stable/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/stable/rdc-win-arm64.exe -OutFile "$installDir\rdc.exe"
# Add to PATH: [Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";$installDir", "User")

Docker

Für Docker-Nutzer

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

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

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

APT (Debian / Ubuntu)

Für Debian, Ubuntu und kompatible Systeme

bash
curl -fsSL https://releases.rediacc.com/apt/stable/gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/rediacc.gpg
echo "deb [signed-by=/usr/share/keyrings/rediacc.gpg] https://releases.rediacc.com/apt/stable 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://releases.rediacc.com/rpm/stable/rediacc.repo -o /etc/yum.repos.d/rediacc.repo
sudo dnf install rediacc-cli

APK (Alpine Linux)

Für Alpine Linux und kompatible Systeme

sh
# Add the repository
echo "https://releases.rediacc.com/apk/stable" | 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 kompatible Systeme

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

# Install
sudo pacman -Sy rediacc-cli

Homebrew (macOS / Linux)

Für macOS- und Linux-Nutzer 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