惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
The Cloudflare Blog
IT之家
IT之家
V
V2EX
雷峰网
雷峰网
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Stack Overflow Blog
Stack Overflow Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
A
About on SuperTechFans
B
Blog
月光博客
月光博客
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building an Android-like Platform for Embedded Linux Devi...
Peter H · 2026-05-08 · via DEV Community

Building an Android-like Platform for Embedded Linux Devices — Without Docker

Every embedded Linux project seems to start the same way:

  • SSH into the device
  • Install dependencies
  • Configure services
  • Set up OTA updates
  • Handle networking
  • Build custom APIs
  • Repeat everything again for the next project

After rebuilding the same infrastructure multiple times across different edge and IoT projects, we decided to create a platform that abstracts all of that into a unified runtime.

That platform became Orbit OS.

What is Orbit OS?

Orbit OS is an embedded Linux platform designed to bring an Android-like experience to edge devices such as Raspberry Pi systems and other ARM-based hardware.

Instead of using Docker containers, Orbit OS uses a lightweight native runtime called Gravity RT and a custom package format called .orb.

The idea is simple:

Install Orbit OS once, and the device gains:

  • Remote application deployment
  • OTA updates
  • Fleet management
  • Sandboxed applications
  • Unified hardware APIs
  • Built-in Edge AI support (TFLite & ONNX)
  • Application Store
  • Real-time remote development tools

Why Not Docker?

Most existing edge platforms are built around containers.

Containers are powerful, but for constrained edge devices they also introduce additional RAM, storage, startup, management overhead, and OTA size.

Orbit OS was designed for environments where devices may only have 128–256MB of RAM available.

Instead of Docker, applications run directly through Gravity RT using lightweight .orb packages (like Android .apk).

This allows:

  • Lower memory usage
  • Faster startup
  • Smaller packages
  • Native hardware access
  • Simpler deployment model

Gravity RT Architecture

Gravity RT runs on top of an existing Linux distribution and acts as the system runtime for all applications.

Core architecture:

Hardware
└── Linux
    └── Gravity RT
        ├── Gravity Server (Go)
        ├── gRPC APIs
        ├── UDS communication
        ├── mTLS external APIs
        ├── Lazy-loaded JVM
        ├── Lazy-loaded Python VM
        └── Built-in TFLite and ONNX runtime
            └── Orbit OS Ecosystem
                ├── Unified Multi-language .orb packages
                ├── Orbit Studio
                ├── Orbit OS Store (Certified Aplications)
                └── Orbit OS HW Marketplace* (Certified Hardware Devices) 

Enter fullscreen mode Exit fullscreen mode

The Gravity Server is written in Go and remains always active as the parent process for all .orb applications.

It manages:

  • Application lifecycle
  • Restart policies
  • OTA coordination
  • Security
  • Logging
  • Package management

Real-Time Remote Development

One of the most interesting parts of Orbit OS is the development workflow.

Traditional embedded development usually looks like this:

Write code → Compile → Deploy → Run → Debug → Repeat

Orbit OS changes this model completely.

With Orbit Studio (VS Code extension), developers write code locally while executing directly against real hardware in real time.


Laptop
├── Write code locally
├── SDK connects to device via gRPC/mTLS
├── Code runs on live hardware instantly
├── Logs stream back in real time
└── Generate the .orb package only when ready

Enter fullscreen mode Exit fullscreen mode

The device becomes a real-time execution target instead of a deployment target.

No SSH.

No file transfers.

No deployment loop during development.

▶️ Orbit OS — Orbit Studio First App | Real-Time Remote Development, GPIO LED Control & Deploy

The .orb Package Format

Orbit OS applications are distributed as signed .orb packages.

A package contains:

  • Executable binaries
  • NV data like AI models
  • Resources
  • Manifest
  • Cryptographic signatures

The structure is intentionally similar to Android APKs.

Built-In Edge AI

TensorFlow Lite and ONNX support are included directly in the platform,
accessible via the AI Manager SDK API.

Applications do not need to bundle inference runtimes or manage dependencies.
Apps only bring the model and the logic — the platform handles the rest.

The AI Manager automatically selects the correct backend based on the model type:

  • .tflite models → TensorFlow Lite runtime
  • .onnx models → ONNX runtime

Current AI applications already available in the Store:

  • YOLOv8 object detection
  • Face recognition

All inference runs locally on-device. No cloud. No external APIs.

OTA Updates

Orbit OS uses OSTree for runtime updates.

This provides:

  • Atomic updates
  • Rollback support
  • Immutable runtime layers
  • Safe recovery

The runtime can update itself without rebooting the full Linux system.

Orbit OS Store

Orbit OS includes a centralized application store where developers can publish .orb applications and users can remotely install them across devices linked to their account.

Features currently implemented:

  • One-click installation
  • Remote deployment
  • App updates
  • OTA runtime updates
  • Fleet management
  • Multi-device deployment

Apps Available Today

  • KS0212 4-Channel Relay Shield — Web UI, Modbus TCP server, MQTT with Home Assistant auto-discovery. One click, zero configuration.
  • Mochi MQTT Broker — Lightweight MQTT broker with integrated Web UI. Configure ports, users and settings from the browser.
  • Edge AI — Smart Image Detection — YOLOv8 COCO object detection using TFLite. Runs locally, no cloud, no external APIs.
  • Edge AI — Face Recognition — Real-time face recognition with any connected camera. Enroll faces in under 10 seconds. 100% offline.
  • MCP Server — Manage your device with AI Agents.
  • And more...

App Example — Edge AI Smart Image Detection

Edge AI – Smart Image Detection is an Orbit OS application that performs
real-time object detection locally on edge devices using YOLOv8 TensorFlow
Lite models.

Users can remotely install the application from the Orbit OS Store with a
single click on any device linked to their account.

After being installed in seconds, users can upload images directly from the browser, detect and label objects with bounding boxes, inspect inference timing, and view the raw JSON output generated by the AI service.

The application runs entirely on-device through the Orbit OS AI Manager API using YOLOv8 / COCO TensorFlow Lite models, with no cloud processing, Docker containers, or manual setup required.

This video demonstrates the application running simultaneously on two different devices: a Raspberry Pi 5 vs Arduino UNO Q.
Same App, same Model. Different hardware, different performance.

▶️ Orbit OS — Edge AI Object Detection | YOLOv8 | Raspberry Pi 5 & Arduino UNO Q

Current Status

Currently supported:

  • Raspberry Pi 3,4,5,Zero 2W
  • Arduino UNO Q

SDKs:

  • Go (available)
  • Java (beta)
  • Python (beta)
  • C++ (planned)

Try It

Orbit OS Community Edition and the Go SDK are now available.

We are currently looking for developers interested in:

  • Embedded Linux
  • Edge AI
  • Raspberry Pi
  • Industrial IoT
  • Runtime systems
  • Remote deployment tooling

If you build something with the SDK, we would love to hear about it —
drop a comment or reach out at info@orbit-os.org.

Demo Videos

▶️ https://youtube.com/@orbit-os-edge

Links