{% extends "base.html" %} {% block title %}sdme — the systemd machine editor{% endblock %} {% block content %}

The systemd machine editor: a command line tool for managing systemd-nspawn booted containers on Linux.

Installation

curl -fsSL https://fiorix.github.io/sdme/install.sh | sudo sh

Installs a single static binary to /usr/local/bin/sdme. Auto-detects architecture (x86_64 / aarch64) and verifies SHA256 checksums. For .deb, .rpm, and .pkg packages, see downloads below.


{% set tutorials = get_section(path="tutorial/_index.md") %}

Tutorials

{% for page in tutorials.pages %}

{% if page.extra.status is defined and page.extra.status == "soon" %} {{ page.title }} coming soon {% else %} {{ page.title }} {% endif %}

{{ page.description }}

{% endfor %}

{% set docs = get_section(path="docs/_index.md") %}

Documentation

{% for page in docs.pages %}

{{ page.title }}

{{ page.description }}

{% endfor %}

{% endblock %} {% block extra_scripts %} {% endblock %}