Skip to content

RobOS v0.0.3

Choose a tag to compare

@github-actions github-actions released this 17 Apr 14:09
· 193 commits to main since this release

RobOS v0.0.3

Quick Start

Download robos-v0.0.3.qcow2 (VM disk image) and robos-v0.0.3-seed.iso (installer), then:

# First boot — provisions the full RobOS desktop
qemu-system-x86_64 -m 16G -smp $(nproc) -enable-kvm -cpu host \
  -drive file=robos-v0.0.3.qcow2,format=qcow2,if=virtio \
  -drive file=robos-v0.0.3-seed.iso,format=raw,if=virtio \
  -netdev user,id=net0,hostfwd=tcp::2224-:22 \
  -device virtio-net-pci,netdev=net0 \
  -display gtk

# After first boot completes and VM reboots, run without seed ISO:
qemu-system-x86_64 -m 16G -smp $(nproc) -enable-kvm -cpu host \
  -drive file=robos-v0.0.3.qcow2,format=qcow2,if=virtio \
  -netdev user,id=net0,hostfwd=tcp::2224-:22 \
  -device virtio-net-pci,netdev=net0 \
  -display gtk

Or build from source: git clone, infra/desktop/build.sh, infra/desktop/run.sh --firstboot

Release Assets

File Description
robos-v0.0.3.qcow2 Ready-to-boot VM disk image (Ubuntu 22.04 base, ~700 MB download)
robos-v0.0.3-seed.iso Cloud-init seed ISO — provisions RobOS desktop + 30+ apps on first boot
robos-v0.0.3-packages.tar.gz All RobOS Electron app packages (for manual install or development)
SHA256SUMS Checksums for all artifacts

What's New

3380c0f feat: RobOS installer ISO + flash-to-USB CLI tool
70b8f8b docs: add bare-metal laptop install guide to Getting Started + README

Checksums

4e5ec3429733af6201d4ec9be153162000f3d1712c260c4ca1235d2972df56af  robos-v0.0.3-packages.tar.gz
7a4abed469d1f799c27ed6d45af7631eb43c2a05d9427b0576b92dfcd53284ae  robos-v0.0.3-seed.iso
772e74bdf0ffa8b4ec3e0a324cfe45b0faafd87db92d3b79880c4e9b4aaf0d45  robos-v0.0.3.iso
67139aac0d5b7d9ab050fddd224125eaaf0b82f8e123715f1f08c28b0a9b5c3a  robos-v0.0.3.qcow2

System Requirements

  • QEMU/KVM with /dev/kvm access (or any hypervisor that reads qcow2)
  • 16 GB RAM, 100 GB disk space
  • SSH: port 2224 | VNC: port 5910 | SPICE: port 5932

Documentation | Getting Started