XIRTUS SYSTEMS RESEARCH GROUP REV: 0.7-BETA

Forward Thinking Reliable Systems Architecture.

Department
Xirtus Systems Research Group
Distribution
Internal / Public Draft
Revision
0.7-BETA
Date
09 JUL 2026
TRANSPARENCY 01 / 14 — SYSTEM INTRODUCTION
XIRTUS SYSTEMS RESEARCH GROUP DISTRIBUTION: PUBLIC DRAFT

System Abstract

Xirtux UNIX System is a minimal research operating system derived from the BSD lineage, designed for operators who prefer source trees to service agreements. The system assumes local control, visible mechanisms, and durable documentation as core virtues. It is not a general-purpose distribution for casual use; it is a workshop for understanding systems through direct engagement.

The distribution ships with a small, auditable kernel, a conservative userland drawn from the BSD tradition, and a ports-like package system bridged to the pkgsrc ecosystem. All tooling is designed for the operator who administers their own machine and reads the manual before asking questions.

Xirtux UNIX System has no telemetry, no cloud dependency, no required network activation, and no subscription model. It is distributed as a single ISO image with complete source visibility. The project believes that an operating system is a tool, not a service, and that the operator owns the machine absolutely.

OPERATOR NOTE: This system assumes familiarity with Unix conventions, the C toolchain, BSD make, and manual page navigation. New users should begin with the Xirtux Handbook (man xirtux) after installation.

TRANSPARENCY 02 / 14 — SYSTEM ABSTRACT
XIRTUS SYSTEMS RESEARCH GROUP REV: 0.7-BETA

Operating Principles

  1. FIG. P1 — Small kernel, readable tree. The kernel source tree is deliberately constrained. Every subsystem must justify its presence. The goal is a kernel an experienced operator can read and understand in a reasonable period.
  2. FIG. P2 — Conservative networking stack. Network protocols are implemented defensively. No experimental congestion algorithms, no hidden telemetry, no auto-negotiated cloud services. The network stack serves the operator, not the network.
  3. FIG. P3 — Local-first tooling philosophy. All system tools operate on the local machine by default. Remote operations require explicit operator intent. The system never assumes an internet connection.
  4. FIG. P4 — Source-visible system architecture. Every component of the base system ships with complete source code. The build process is documented, reproducible, and does not require binary bootstrap blobs. Operators are encouraged to read the source.
  5. FIG. P5 — No decorative complexity. Features are added only when they solve a demonstrated problem for system operators. Cosmetic enhancements, animation, transparency effects, and graphical boot splashes are not part of the base system.
  6. FIG. P6 — Operator owns the machine. The operator has root access, unrestricted file system control, and full authority over every installed component. The system does not hide configuration behind automated tools. Manual pages are the authoritative interface.

SYSTEM CONSTRAINT: These principles are not marketing. They are engineering constraints enforced by the build system and the project governance document (see src/SYS_CONSTRAINTS). Each principle is illustrated in the diagrams that follow.

TRANSPARENCY 03 / 14 — OPERATING PRINCIPLES
XIRTUS SYSTEMS RESEARCH GROUP FIG. P1

Small Kernel, Readable Tree

JUSTIFICATION GATE must demonstrate necessity KERNEL CORE xirtux/sys — deliberate constraint VM SCHED VFS IPC AUDIO DRM USB BT SOURCE TREE /usr/src/sys — ~18,000 lines, readable in one sitting approved APPROVED: REJECTED: (no demonstrated operator need) READABLE IN ONE SITTING

FIG. P1 — Kernel subsystem approval model. Solid lines: justified subsystems accepted into the tree. Dashed red: rejected proposals. Kernel targets ~18,000 lines of C — readable by an experienced operator in a single session.

TRANSPARENCY 04 / 14 — PRINCIPLE 1: SMALL KERNEL
XIRTUS SYSTEMS RESEARCH GROUP FIG. P2

Conservative Networking Stack

OPERATOR APPLICATION LAYER BSD SOCKETS TCP / UDP defensive — no experimental congestion algorithms IP (v4 / v6) stateless — operator-owned route table LINK LAYER ethernet · loopback · no wireless auto-join TELEMETRY CLOUD SVC AUTO-CFG HIDDEN TX explicit bind no exp. algos operator routes no auto-join PHYSICAL WIRE — RJ-45 / LOOPBACK BLOCKED: OPERATOR CONTROLS ALL

FIG. P2 — Conservative networking stack. Each layer applies operator-configured filters. No protocol auto-negotiation, no hidden telemetry, no cloud dependency. Rejected external influences crossed out on the right.

TRANSPARENCY 05 / 14 — PRINCIPLE 2: NETWORKING
XIRTUS SYSTEMS RESEARCH GROUP FIG. P3

Local-First Tooling Philosophy

LOCAL MACHINE OPERATOR xsys xpkg make man KERNEL local filesystem · /dev · /proc REMOTE (EXPLICIT) fetch -r PKG MIRROR SSH (opt.) SRC MIRROR EXPLICIT INTENT ⚠ NO INTERNET ASSUMED All tools default to local operation. Remote = explicit. LOCAL-FIRST

FIG. P3 — Local-first tooling architecture. Left: local machine with tools defaulting to local operation. Right: remote boundary only reachable through EXPLICIT INTENT barrier. The system never assumes an internet connection.

TRANSPARENCY 06 / 14 — PRINCIPLE 3: LOCAL-FIRST
XIRTUS SYSTEMS RESEARCH GROUP FIG. P4

Source-Visible System Architecture

SOURCE TREE /usr/src — complete · readable · versioned KERNEL [SRC INCLUDED] sys/ — ~18k lines C USERLAND [SRC INCLUDED] bin/ sbin/ usr.bin/ PORTS [RECIPES] pkgsrc bridge — src visible BUILD PIPELINE make build — documented · reproducible · no blobs xirtux/sys BASE SYSTEM ISO IMAGE BINARY BLOB BOOTSTRAP ALL SOURCE VISIBLE: ports opt. REJECTED: FULLY REPRODUCIBLE "Operators are encouraged to read the source."

FIG. P4 — Source-visible build pipeline. Every component ships with source. Build is documented and reproducible. Binary blob bootstrap rejected (crossed out). Ports integrate via pkgsrc where upstream source is available.

TRANSPARENCY 07 / 14 — PRINCIPLE 4: SOURCE-VISIBLE
XIRTUS SYSTEMS RESEARCH GROUP FIG. P5

No Decorative Complexity

FEATURE PROPOSAL DEMONSTRATED PROBLEM? YES APPROVED better scheduler faster VFS path new syscall (solves real problem) NO REJECTED boot splash animations rounded corners color output MINIMAL SYSTEM only what is necessary · nothing more → /dev/null NO COSMETIC ENHANCEMENTS Note: This diagram itself is not part of the base system.

FIG. P5 — Feature gate. Every proposal passes through the DEMONSTRATED PROBLEM? diamond. Green path: real problems → approved. Red path: cosmetic features (boot splashes, animations, rounded corners, color output) → /dev/null. The irony of this diagram existing on an elaborately styled website is noted.

TRANSPARENCY 08 / 14 — PRINCIPLE 5: NO DECORATIVE
XIRTUS SYSTEMS RESEARCH GROUP FIG. P6

Operator Owns the Machine

OPERATOR (root) unrestricted authority · owns the machine absolutely # root access FILESYSTEM / — complete · unrestricted CONFIGURATION /etc — plain text · operator-owned MANUAL PAGES man — authoritative interface HIDDEN CONFIG AUTOMATED TOOLS SUBSCRIPTION THE MACHINE kernel · userland · filesystem · network stack all components under direct operator authority REJECTED: THE OPERATOR IS THE AUTHORITY. MANUAL PAGES ARE THE INTERFACE. OPERATOR SOVEREIGN

FIG. P6 — Operator sovereignty. The operator (root) has unrestricted authority. Three pillars: filesystem control, plain-text configuration, manual pages as the authoritative interface. Rejected below: hidden config, automated tools, subscription models. The machine serves the operator.

TRANSPARENCY 09 / 14 — PRINCIPLE 6: OPERATOR OWNS
XIRTUS SYSTEMS RESEARCH GROUP FIG. 2A

System Architecture

init KERNEL xirtux/sys (monolithic) USERLAND BSD base + GNU NET PORTS PKG TOOLS xpkg / pkgsrc bridge SOURCE TREE /usr/src — complete, readable, versioned PID 1 TCP/IP routes 3rd-party software

FIG. 2A — Simplified component diagram. Solid lines indicate direct API linkage. Dashed lines represent build-time or packaging relationships. Click any component for related documentation.

TRANSPARENCY 10 / 14 — SYSTEM ARCHITECTURE
XIRTUS SYSTEMS RESEARCH GROUP OPERATOR REFERENCE

Command Demonstration

The following examples illustrate the core Xirtux UNIX System operator commands. These are not emulated or containerized — each command interacts directly with the system it runs on.

operator@xirtux:~ $ xpkg audit

[xpkg] scanning installed package database
[xpkg] checking against pkgsrc-vulns-2026Q3.db
[xpkg] 0 known vulnerabilities in 847 installed packages
[xpkg] system integrity: NOMINAL
operator@xirtux:~ $ xsys rebuild

[xsys] rebuilding base system from /usr/src
[xsys] target: amd64
[xsys] kernel:       OK  (38s)
[xsys] userland:     OK  (142s)
[xsys] release:      OK  (17s)
[xsys] build complete — artifacts in /usr/obj
operator@xirtux:~ $ man xirtux
XIRTUX(7)          Xirtux UNIX System Manual          XIRTUX(7)

operator@xirtux:~ $ rcctl show
sshd          enabled   running
ntpd          enabled   running
syslogd       enabled   running
xirtuxd       enabled   running
httpd         disabled  stopped

OPERATOR NOTE: All commands use manual pages as authoritative documentation. Run man xirtux-intro for a guided introduction to the system toolchain.

TRANSPARENCY 11 / 14 — COMMAND DEMONSTRATION
XIRTUS SYSTEMS RESEARCH GROUP REV: 0.7-BETA

Compatibility Matrix

Subsystem support status across target platforms for revision 0.7-BETA.

Subsystem Status Notes
amd64 STABLE Primary target. Full kernel, userland, and ports support.
arm64 ◐ EXPERIMENTAL Boots to multi-user. Device tree for Pi 4, Apple M1/M2 in progress.
pkgsrc bridge STABLE Full pkgsrc via xpkg. 24,000+ packages.
bhyve / jails layer ◐ EXPERIMENTAL Virtualization and container isolation. bhyve port functional.
retro workstation ◐ EXPERIMENTAL Profile for ThinkPad X220/T420 era machines.
laptop austerity mode ○ PLANNED Minimal power profile. Target: 0.8W idle.
i386 ◐ EXPERIMENTAL Legacy 32-bit support. Community-maintained.
ZFS root STABLE OpenZFS 2.2 integrated. Boot environments, snapshots, native encryption.

SYSTEM CONSTRAINT: Support classifications evaluated quarterly by the Xirtus Systems Research Group.

TRANSPARENCY 12 / 14 — COMPATIBILITY MATRIX
XIRTUS SYSTEMS RESEARCH GROUP BUILD TARGETS

Download & Build

Xirtux UNIX System is distributed as a single installable ISO image. The complete source tree is available for local building. No network registration, activation key, or account required.

BUILD TARGET: amd64

$ ftp https://cdn.xirtux.org/pub/xirtux/0.7-BETA/src.tar.xz
$ tar xJf src.tar.xz -C /usr/src
$ cd /usr/src
$ make build
[xsys] rebuilding Xirtux UNIX System 0.7-BETA
[xsys] operator confirmation required — see make(1) and xsys(8)

No warranty. No telemetry. No cloud requirement. Provided by the Xirtus Systems Research Group under the BSD 2-Clause License. Operators assume full responsibility for their systems. Read the manual. Understand your machine.

TRANSPARENCY 13 / 14 — DOWNLOAD & BUILD
XIRTUS SYSTEMS RESEARCH GROUP END OF DECK
╔══════════════════════════════════════════════════════════════════════════════╗
║                                                                              ║
║                    UNITED STATES GENERAL SERVICES ADMINISTRATION             ║
║                    FEDERAL INFORMATION PROCESSING STANDARD                   ║
║                                                                              ║
║           X I R T U X (R)   U N I X   O P E R A T I N G   S Y S T E M        ║
║                                                                              ║
║           TRUSTED COMPUTING BASEDEPARTMENT OF WAR — UNCLASSIFIED          ║
║                                                                              ║
║           DOCUMENT CONTROL NUMBER: XRX-DC-7704-ALPHA-VOID                    ║
║           DISTRIBUTION: AUTHORIZED PERSONNEL ONLY                            ║
║           CLASSIFICATION: UNCLASSIFIED // FOR OFFICIAL USE ONLY              ║
║                                                                              ║
╚══════════════════════════════════════════════════════════════════════════════╝

Xirtux UNIX System is Forward Thinking Reliable Systems Architecture — an operating system for people who read documentation, inspect source code, and administer their own machines. It has no investors, no engagement metrics, and no growth targets. It has a kernel, a userland, and a manual.

DISTRIBUTION: PUBLIC DRAFT  |  REVISION: 0.7-BETA  |  DATE: 09 JUL 2026

Prepared by the Xirtus Systems Research Group  —  Windowless Computing Lab No. 4

TRANSPARENCY 14 / 14 — CLOSING
LAMP NOMINAL HRS: 1,247