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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
C
Check Point Blog
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
Jina AI
Jina AI
博客园 - 【当耐特】
U
Unit 42
月光博客
月光博客
腾讯CDC
Y
Y Combinator Blog
小众软件
小众软件
博客园_首页
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
T
Tailwind CSS Blog

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - tschk/alpenglow: hyperlightweight minimal diskle...
undivisible · 2026-06-17 · via Show HN

General-purpose musl+LLVM Linux distribution. dinit init, Oil packages. Boots to login in <1s on native virt (x86_64 KVM or aarch64 HVF).

Two deployment modes:

  • Diskless/immutable — initramfs-only, RAM root, GlowFS overlay (appliance mode)
  • Rootfs — normal root-on-disk (ext4/btrfs/zfs), package-managed
scripts/boot-native.sh           # build + boot initramfs (QEMU)
system/backends/appliance/scripts/qemu.sh   # boot existing build

Platform support:

  • x86_64 — main branch (primary target)
  • aarch64 — arch/aarch64 branch — QEMU virt, Apple Silicon HVF
  • riscv64 — arch/riscv64 branch — QEMU virt, OpenSBI
  • Rockchip RK3566 — board/rk3566 branch — PINE64 Quartz64

Quick Start

# Initramfs (diskless) mode — build + boot in QEMU
./scripts/boot-native.sh

# Rootfs mode — install to disk
curl -L alpenglow.example.org/installer | sh   # or:
oil install alpenglow-core

# Custom kernel
KERNEL_BUILD=1 ./scripts/boot-native.sh

Design

Layer Choice Notes
Init dinit Parallel dependency graph, both modes
Userland toybox (838KB), oksh Static musl, no glibc
Package mgr Oil APK-compatible, standalone binary
Kernel Linux 7.0 + Rust modules CONFIG_RUST=y, alpenglow_core.ko
Kernel ctrl kernelctl (Zig, 89KB) Static, µs-scale startup
Network netd (Rust), udhcpc, iwd Zero-external-deps netd
Root FS Diskless: GlowFS/erofs/squashfs in RAM. Rootfs: ext4 over LUKS
Compositor Wayland + cage + foot Optional, not in base
Security AppArmor, read-only root (optional) Hardened by default
Audio ALSA + PipeWire
Kernel Linux 7.0+ with CONFIG_RUST=y, GlowFS in-tree

Project Layout

system/
  backends/
    appliance/          Primary profile (kernel configs, dinit services, scripts)
  kernelctl-zig/        Cgroup + kernel policy (Zig, 89KB static)
  netd/                 Network state daemon (Rust, zero deps)
  glowfsctl-zig/        GlowFS image tooling (Zig, 164KB)
  oil/                  Package manager (Rust, APK-compatible)
  glowfs/               GlowFS kernel module source (C+Rust)
  kernel-modules/       Rust kernel modules (alpenglow_core, alpenglow_bootstat)
  init/                 Zig init (4.8KB static, initramfs fallback)
scripts/                Build, CI, benchmark scripts
docs/                   Architecture, build, install docs

Kernel configs live at system/backends/appliance/kernel/.

Performance

Boot to login (QEMU KVM, quiet)

OS Boot Initramfs Kernel Idle RAM
Alpenglow min 0.6s 1.4K 4.4MB ~17MB
Alpenglow std 1.3s 1.7MB 4.4MB ~26MB
Alpine Linux virt 1.3s 8.7MB 6.5MB ~58MB
Void Linux 2.5s 12MB 7MB ~80MB
Ubuntu Server 15s 40MB 12MB ~200MB

Alpenglow minimal (Zig init, 4.8KB) boots in 0.6s on x86_64 KVM. The standard build (dinit + toybox + getty) is 1.3s. Alpine matches boot speed but has 6000x larger initramfs and 3x the RAM. Both modes use the same toolchain — the difference is just initramfs contents.

Binary size (static musl, x86_64)

Tool Lang Size vs alternative
kernelctl Zig 89KB 501KB (Rust)
glowfsctl Zig 164KB 501KB (Rust)
init Zig 4.8KB 937KB (toybox+sh)
dinit C++ 1.6MB 20MB+ (systemd)
toybox C 838KB 10MB+ (coreutils)
alpenglow_core.ko Rust 9.2K kernel built-in

Modes

Alpenglow runs in two deployment modes sharing the same codebase:

Diskless/Appliance — boot from initramfs, root in RAM (tmpfs), state on persistent partition. Uses GlowFS squashfs for verified immutable root. Target: embedded, edge, kiosk, containers.

Rootfs/Desktop — install to disk (ext4 over LUKS), normal r/w root. dinit manages services, Oil installs packages. Target: workstation, server, development.

The init script auto-detects mode: if /dev/disk/by-label/alpenglow-root exists, it switches root; otherwise runs diskless. Both modes use the same kernel, toolchain, and package format.

Services

Service Status Appliance Desktop Managed by
SSH (dropbear) dinit
NTP (chronyd) dinit
DNS cache (dnsmasq) dinit
Logging (syslogd) dinit
DHCP networking dinit
WiFi (iwd) optional dinit
Wayland + sway optional dinit
Audio (PipeWire) optional dinit
Package manager (Oil) dinit
Kernel policy (kernelctl) dinit
GlowFS mount optional dinit

Status

21/22 milestones complete. Last milestone: real hardware boot (QEMU only for now).

See AGENTS.md for full milestone table and docs/ for architecture docs.