Ana içeriğe atla Navigasyona atla Alt bilgiye atla

Rediacc CLI Yükle

Tercih ettiğiniz kurulum yöntemini seçin

Masaüstü uygulamaları veya doğrudan ikili dosyalar mı arıyorsunuz? İndirmeler sayfasını ziyaret edin →

Doğrudan İndirme

Bağımsız ikili dosya, paket yöneticisi gerektirmez

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

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

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

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

Docker

Konteyner ortamları için

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)

Debian, Ubuntu ve türevleri için

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)

Fedora, RHEL, CentOS, Rocky Linux için

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

Homebrew (macOS / Linux)

Homebrew kullanan macOS ve Linux kullanıcıları için

bash
brew install rediacc/tap/rediacc-cli

Kurulumu Doğrula

bash
rdc --version

Desteklenen Mimariler

Yöntem Platform x86_64 / amd64 ARM64 / aarch64
Hızlı Kurulum Linux
macOS
Windows
Doğrudan İndirme Linux
macOS
Windows
APT (.deb) Linux
DNF (.rpm) Linux
Homebrew macOS / Linux
Docker Linux / macOS / Windows