Skip to content

v5.6.10

Latest

Choose a tag to compare

@github-actions github-actions released this 31 Jan 16:52
8fd3141

Server Installation (Linux)

Debian/Ubuntu

# AMD64 (Intel/AMD)
wget https://github.com/ehsaniara/joblet/releases/download/v5.6.10/joblet_5.6.10_amd64.deb
sudo dpkg -i joblet_5.6.10_amd64.deb

# ARM64 (AWS Graviton, ARM servers)
wget https://github.com/ehsaniara/joblet/releases/download/v5.6.10/joblet_5.6.10_arm64.deb
sudo dpkg -i joblet_5.6.10_arm64.deb

# Start service
sudo systemctl start joblet && sudo systemctl enable joblet

RHEL/CentOS/Amazon Linux

# x86_64
sudo yum install -y https://github.com/ehsaniara/joblet/releases/download/v5.6.10/joblet-5.6.10-1.x86_64.rpm

# aarch64 (AWS Graviton)
sudo yum install -y https://github.com/ehsaniara/joblet/releases/download/v5.6.10/joblet-5.6.10-1.aarch64.rpm

# Start service
sudo systemctl start joblet && sudo systemctl enable joblet

RNX CLI (Client)

macOS

# Apple Silicon (M1/M2/M3/M4)
curl -L https://github.com/ehsaniara/joblet/releases/download/v5.6.10/rnx-v5.6.10-darwin-arm64.tar.gz | tar xz
sudo mv rnx-darwin-arm64 /usr/local/bin/rnx

# Intel
curl -L https://github.com/ehsaniara/joblet/releases/download/v5.6.10/rnx-v5.6.10-darwin-amd64.tar.gz | tar xz
sudo mv rnx-darwin-amd64 /usr/local/bin/rnx

Windows

Invoke-WebRequest -Uri "https://github.com/ehsaniara/joblet/releases/download/v5.6.10/rnx-v5.6.10-windows-amd64.zip" -OutFile rnx.zip
Expand-Archive rnx.zip -DestinationPath .
Move-Item rnx-windows-amd64.exe C:\Windows\rnx.exe

Linux

curl -L https://github.com/ehsaniara/joblet/releases/download/v5.6.10/rnx-v5.6.10-linux-amd64.tar.gz | tar xz
sudo mv rnx-linux-amd64 /usr/local/bin/rnx

Quick Start

# 1. Copy client config from server
scp your-server:/opt/joblet/config/rnx-config.yml ~/.rnx/

# 2. Test connection
rnx job list

# 3. Run a job
rnx job run echo "Hello from Joblet!"

Verify Checksums

curl -LO https://github.com/ehsaniara/joblet/releases/download/v5.6.10/SHA256SUMS.txt
sha256sum -c SHA256SUMS.txt

What's Changed

  • Refactor CUDA verification to use nvidia-smi and fix silent GPU allocation failures. by @ehsaniara in #255
  • Add per-job execution timeout with --timeout flag by @ehsaniara in #256

Full Changelog: v5.6.9...v5.6.10