تثبيت Rediacc CLI
اختر طريقة التثبيت المفضلة لديك
هل تبحث عن تطبيقات سطح المكتب أو الملفات الثنائية؟ زيارة صفحة التنزيلات →
التثبيت السريع
موصى به - تثبيت تلقائي مع إدارة الإصدارات
bash
# Linux / macOS
curl -fsSL https://www.rediacc.com/install.sh | bashpowershell
# Windows (PowerShell)
irm https://www.rediacc.com/install.ps1 | iexتنزيل مباشر
ملف ثنائي مستقل، لا حاجة لمدير حزم
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
لبيئات الحاويات
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 والمشتقات
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-cliDNF (Fedora / RHEL)
لـ 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-cliAPK (ألباين لينكس)
لألباين لينكس ومشتقاته
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-cliPacman (آرتش لينكس)
لآرتش لينكس ومشتقاته
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-cliHomebrew (macOS / Linux)
لمستخدمي macOS وLinux مع Homebrew
bash
brew install rediacc/tap/rediacc-cliالتحقق من التثبيت
bash
rdc --version المعماريات المدعومة
| الطريقة | المنصة | x86_64 / amd64 | ARM64 / aarch64 |
|---|---|---|---|
| التثبيت السريع | Linux | ✓ | ✓ |
| macOS | ✓ | ✓ | |
| Windows | ✓ | ✓ | |
| تنزيل مباشر | 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 | ✓ | ✓ |