ironrdp-agent-v0.1.0
Prebuilt binaries
Prebuilt, checksummed archives of ironrdp-agent are attached to this release:
ironrdp-agent-0.1.0-linux-arm64.tar.gzironrdp-agent-0.1.0-linux-x64.tar.gzironrdp-agent-0.1.0-macos-arm64.tar.gzironrdp-agent-0.1.0-macos-x64.tar.gzironrdp-agent-0.1.0-windows-arm64.tar.gzironrdp-agent-0.1.0-windows-x64.tar.gz
Each archive has a matching .sha256 sidecar. The Windows archive contains ironrdp-agent.exe;
the others contain the bare ironrdp-agent executable.
Download and verify
Pick an archive from the list above, then download, verify, and extract it. The two blocks
below are self-contained; use the one for your platform.
Linux and macOS (POSIX shell):
ASSET="<archive name from the list above>"
BASE="https://github.com/Devolutions/IronRDP/releases/download/ironrdp-agent-v0.1.0"
curl -fLO "$BASE/$ASSET"
curl -fLO "$BASE/$ASSET.sha256"
sha256sum --check "$ASSET.sha256" # on macOS: shasum -a 256 --check "$ASSET.sha256"
tar -xzf "$ASSET"Windows (PowerShell):
$Asset = "<archive name from the list above>"
$Base = "https://github.com/Devolutions/IronRDP/releases/download/ironrdp-agent-v0.1.0"
curl.exe -fLO "$Base/$Asset"
curl.exe -fLO "$Base/$Asset.sha256"
if ((Get-FileHash -Algorithm SHA256 $Asset).Hash.ToLowerInvariant() -ne (Get-Content "$Asset.sha256").Split(' ')[0]) { throw 'checksum mismatch' }
tar -xzf $AssetBuild baselines
- Linux archives are built on Ubuntu 22.04 and require glibc 2.35 or later.
- macOS archives target macOS 10.13 or later on Intel and macOS 11.0 or later on Apple Silicon.
Assets are attached to this release (tag ironrdp-agent-v0.1.0). Don't rely on the latest release URL:
releases are tagged per package (ironrdp-agent-v*, ironrdp-viewer-v*), so latest may resolve
to the other package.