diff --git a/montaukos.org/docs/apm/api.html b/montaukos.org/docs/apm/api.html deleted file mode 100644 index 1c8108a..0000000 --- a/montaukos.org/docs/apm/api.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Montauk API - MontaukOS - - - - - - - - - -
-
-

Montauk API

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/apm/apps.html b/montaukos.org/docs/apm/apps.html deleted file mode 100644 index c866735..0000000 --- a/montaukos.org/docs/apm/apps.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Application management - MontaukOS - - - - - - - - - -
-
-

Application management

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/apm/assets/discard_dialog.png b/montaukos.org/docs/apm/assets/discard_dialog.png deleted file mode 100644 index 6fea8f6..0000000 Binary files a/montaukos.org/docs/apm/assets/discard_dialog.png and /dev/null differ diff --git a/montaukos.org/docs/apm/assets/save_dialog.png b/montaukos.org/docs/apm/assets/save_dialog.png deleted file mode 100644 index 3392125..0000000 Binary files a/montaukos.org/docs/apm/assets/save_dialog.png and /dev/null differ diff --git a/montaukos.org/docs/apm/config.html b/montaukos.org/docs/apm/config.html deleted file mode 100644 index 0d17fd0..0000000 --- a/montaukos.org/docs/apm/config.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - - Configuration and TOML - MontaukOS - - - - - - - - - -
-
-

Configuration and TOML

-
- -
- -

MontaukOS provides a small header-only C++ API for reading and writing -TOML configuration files from userspace. Include -<montauk/config.h> for file-backed configuration and -<montauk/toml.h> for the in-memory TOML document model.

- -

Configuration locations

- -

System configuration is stored in 0:/config. The API accepts a -name without the .toml extension:

- -
0:/config/desktop.toml
-0:/config/network.toml
- -

Per-user configuration is stored below the user directory:

- -
0:/users/<username>/config/<name>.toml
- -

Loading and saving

- -
#include <montauk/config.h>
-
-auto doc = montauk::config::load("desktop");
-const char* theme = doc.get_string("appearance.theme", "light");
-
-montauk::config::set_string(&doc, "appearance.theme", "dark");
-int result = montauk::config::save("desktop", &doc);
-
-doc.destroy();
- -

load() returns an initialized empty document if the file does -not exist. save() creates the configuration directory and returns -0 on success or a negative value on error. Saving rewrites the -whole file.

- -

System configuration API

- -
toml::Doc config::load(const char* name);
-int       config::save(const char* name, toml::Doc* doc);
-int       config::remove(const char* name);
- -

Per-user configuration API

- -
toml::Doc config::load_user(const char* username, const char* name);
-int       config::save_user(const char* username,
-                            const char* name,
-                            toml::Doc* doc);
- -

For example:

- -
auto doc = montauk::config::load_user("alice", "desktop");
-bool clock24 = doc.get_bool("display.clock_24h", false);
-
-montauk::config::set_bool(&doc, "display.clock_24h", true);
-montauk::config::save_user("alice", "desktop", &doc);
-doc.destroy();
- -

Reading values

- -

Keys may use dotted paths corresponding to TOML tables:

- -
[server]
-host = "pool.ntp.org"
-port = 123
-enabled = true
- -
const char* host = doc.get_string("server.host", "localhost");
-int64_t port = doc.get_int("server.port", 80);
-bool enabled = doc.get_bool("server.enabled", false);
- -

Typed getters return their default when the key is absent or has another -type. The available value types are:

- -
toml::Type::String
-toml::Type::Int
-toml::Type::Bool
-toml::Type::Array
-toml::Type::Table
- -

Arrays and tables are returned as toml::Value*. Their children -are available through value->array.items and -value->array.count:

- -
auto* names = doc.get_array("server.names");
-if (names) {
-    for (int i = 0; i < names->array.count; ++i) {
-        auto* item = names->array.items[i];
-        if (item->type == montauk::toml::Type::String)
-            montauk::print(item->str);
-    }
-}
- -

Modifying documents

- -
void config::set_string(toml::Doc* doc,
-                        const char* key, const char* value);
-void config::set_int(toml::Doc* doc,
-                     const char* key, int64_t value);
-void config::set_bool(toml::Doc* doc,
-                      const char* key, bool value);
-bool config::unset(toml::Doc* doc, const char* key);
- -

The setters overwrite an existing value or append a new one. The -unset() return value is true when a matching key was -removed.

- -

Parsing and serialization

- -

Use toml::parse() when TOML is already available in memory:

- -
const char* text =
-    "[server]\n"
-    "port = 8080\n"
-    "enabled = true\n";
-
-auto doc = montauk::toml::parse(text);
-int64_t port = doc.get_int("server.port");
-doc.destroy();
- -

A document can be serialized to newly allocated TOML text:

- -
char* text = montauk::config::serialize(&doc);
-// Use text...
-montauk::mfree(text);
- -

Serialization produces normalized TOML and does not preserve comments or -the original formatting.

- -

Memory ownership

- -

toml::Doc owns its parsed values and strings. Every document -returned by load(), load_user(), or -toml::parse() must eventually be released with -doc.destroy().

- -

When constructing a document manually, initialize it before using the -mutation helpers:

- -
montauk::toml::Doc doc;
-doc.init();
-montauk::config::set_bool(&doc, "enabled", true);
-montauk::config::save("example", &doc);
-doc.destroy();
- -

Supported TOML features

- -

The userspace parser supports strings, literal and multiline strings, -integers (including hexadecimal, octal, and binary forms), booleans, arrays, -tables, inline tables, dotted keys, and comments.

- -

There are no typed float or datetime accessors. Callers should also treat -configuration names and usernames as safe path components, since they are -used to construct filesystem paths.

- -
- -
-Back to Application Programming Manual -
- -
- - diff --git a/montaukos.org/docs/apm/dialogs.html b/montaukos.org/docs/apm/dialogs.html deleted file mode 100644 index 981fc5f..0000000 --- a/montaukos.org/docs/apm/dialogs.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - Dialogs Library - MontaukOS - - - - - - - - - -
-
-

Dialogs

-
- -
- -

Overview

-

-The dialogs library (at 0:/os/dialogs.lib) provides the following system dialogs across apps: -

- - - -

Message Box

-

-message_box displays a popup window with text and buttons. -

- -
gui::dialogs::MessageBoxResult message_box(
-    const char* title,
-    const char* message,
-    gui::dialogs::MessageBoxButtons buttons = gui::dialogs::MESSAGE_BOX_OK,
-    char* out_message = nullptr,
-    int out_message_len = 0);
- -

Button Sets

- - - - - - -
ValueButtons
MESSAGE_BOX_OKOK
MESSAGE_BOX_OK_CANCELOK, Cancel
MESSAGE_BOX_YES_NOYes, No
MESSAGE_BOX_YES_NO_CANCELYes, No, Cancel
- -

Results

- - - - - - - -
ValueMeaning
MESSAGE_BOX_RESULT_OKThe user selected OK.
MESSAGE_BOX_RESULT_CANCELThe user selected Cancel or closed a cancelable dialog.
MESSAGE_BOX_RESULT_YESThe user selected Yes.
MESSAGE_BOX_RESULT_NOThe user selected No, or closed a Yes/No dialog.
MESSAGE_BOX_RESULT_NONEThe dialog could not be loaded or invoked.
- -

Example

-
#include <gui/dialogs.hpp>
-
-void show_confirm() {
-    auto result = gui::dialogs::message_box(
-        "Close Document",
-        "Discard unsaved changes?",
-        gui::dialogs::MESSAGE_BOX_YES_NO_CANCEL);
-
-    if (result == gui::dialogs::MESSAGE_BOX_RESULT_YES) {
-        /* discard and close */
-    }
-}
- -
-Message box asking whether to discard unsaved changes -

Example MESSAGE_BOX_YES_NO_CANCEL dialog.

-
- -

File Dialogs

-

-File dialog helpers allow applications to use graphical file selection views (similar to the Files app) to select paths for Open/Save operations. -

- -
bool open_file(
-    const char* title,
-    const char* initial_path,
-    char* out_path,
-    int out_path_len,
-    char* out_message = nullptr,
-    int out_message_len = 0);
-
-bool save_file(
-    const char* title,
-    const char* initial_path,
-    const char* suggested_name,
-    char* out_path,
-    int out_path_len,
-    char* out_message = nullptr,
-    int out_message_len = 0);
- -

-Use initial_path to select the starting directory or current file -context. save_file also accepts a suggested_name for -the filename field. -

- -

Open Example

-
char path[256];
-char message[160];
-
-if (gui::dialogs::open_file("Open File", "", path, sizeof(path),
-                            message, sizeof(message))) {
-    /* open path */
-}
- -

Save Example

-
char path[256];
-
-if (gui::dialogs::save_file("Save File", "", "untitled.txt",
-                            path, sizeof(path))) {
-    /* write path */
-}
- -
-Save file dialog showing folders and a filename field -

Save-file dialog as used by the MontaukOS Word Processor app.

-
- -

Print Dialogs

-

-Print dialog helpers allow applications to expose printer configuration to the user, and submit a file for printing. -

- -
bool configure_print(
-    const char* title,
-    const char* initial_printer_uri,
-    const char* job_name,
-    char* out_printer_uri,
-    int out_printer_uri_len,
-    char* out_printer_name,
-    int out_printer_name_len,
-    uint32_t* out_copies = nullptr,
-    char* out_message = nullptr,
-    int out_message_len = 0);
-
-bool print_file(
-    const char* title,
-    const char* source_path,
-    const char* job_name,
-    char* out_job_id,
-    int out_job_id_len,
-    char* out_message = nullptr,
-    int out_message_len = 0);
- - -

Include

-
#include <gui/dialogs.hpp>

- -
-

Copyright © 2026 Montauk Operating System Project. All rights reserved.

Page last revised 26 May 2026.

- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/apm/index.html b/montaukos.org/docs/apm/index.html deleted file mode 100644 index 83fb528..0000000 --- a/montaukos.org/docs/apm/index.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - Application Programming Manual - MontaukOS - - - - - - - - - -
-
-

Application Programming Manual

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -

Pages

- - -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/apm/libc.html b/montaukos.org/docs/apm/libc.html deleted file mode 100644 index c3b0460..0000000 --- a/montaukos.org/docs/apm/libc.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - C library - MontaukOS - - - - - - - - - -
-
-

C library

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/apm/mtk.html b/montaukos.org/docs/apm/mtk.html deleted file mode 100644 index 9a4dfe1..0000000 --- a/montaukos.org/docs/apm/mtk.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Montauk GUI Toolkit (MTK) - MontaukOS - - - - - - - - - -
-
-

Montauk GUI Toolkit (MTK)

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/apm/porting.html b/montaukos.org/docs/apm/porting.html deleted file mode 100644 index c7284ac..0000000 --- a/montaukos.org/docs/apm/porting.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Application porting guide - MontaukOS - - - - - - - - - -
-
-

Application porting guide

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/apm/sharedlibs.html b/montaukos.org/docs/apm/sharedlibs.html deleted file mode 100644 index 248f92e..0000000 --- a/montaukos.org/docs/apm/sharedlibs.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Shared libraries - MontaukOS - - - - - - - - - -
-
-

Shared libraries

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/apm/toolchains.html b/montaukos.org/docs/apm/toolchains.html deleted file mode 100644 index 5bb566b..0000000 --- a/montaukos.org/docs/apm/toolchains.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Toolchains - MontaukOS - - - - - - - - - -
-
-

Toolchains

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/index.html b/montaukos.org/docs/index.html deleted file mode 100644 index c037a1e..0000000 --- a/montaukos.org/docs/index.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - Documentation - MontaukOS - - - - - - - - - -
-
-

Documentation

-
- -
- -

User Documentation

- - -
- -

Developer Documentation

- - -
- -
-Back to Home -
- -
- - diff --git a/montaukos.org/docs/man/dhcp.html b/montaukos.org/docs/man/dhcp.html deleted file mode 100644 index 33da5a2..0000000 --- a/montaukos.org/docs/man/dhcp.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - dhcp(1) - MontaukOS Manual - - - - - - - - - -
-
-

dhcp(1)

-
- -
- -
NAME
-    dhcp - obtain network configuration via DHCP
-
-SYNOPSIS
-    dhcp
-
-DESCRIPTION
-    The DHCP client automatically obtains an IP address, subnet mask,
-    default gateway, and other network parameters from a DHCP server
-    on the local network using the Dynamic Host Configuration Protocol
-    (RFC 2131).
-
-    On success the network configuration is applied immediately via
-    set_netcfg(). On failure the original configuration is restored.
-
-    The client is run automatically by the init system at boot, but
-    may also be invoked manually from the shell.
-
-PROTOCOL
-    The client performs the standard four-message DHCP exchange:
-
-        1. DHCPDISCOVER  Broadcast to 255.255.255.255:67
-        2. DHCPOFFER     Server offers an IP address
-        3. DHCPREQUEST   Client accepts the offered address
-        4. DHCPACK       Server confirms the lease
-
-    The BROADCAST flag (0x8000) is set so that server replies are
-    sent to the broadcast address, since the client has no IP yet.
-
-    Each step has a 10-second timeout. If no response is received
-    the client exits with an error and restores the previous config.
-
-OUTPUT
-    On success the client prints the assigned configuration:
-
-        IP Address, Subnet Mask, Gateway, DNS Server, Lease Time
-
-OPTIONS
-    The DHCP client requests the following options from the server:
-
-        1   Subnet Mask
-        3   Router (default gateway)
-        6   DNS Server
-        51  Lease Time
-
-SEE ALSO
-    ifconfig(1), shell(1), syscalls(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/edit.html b/montaukos.org/docs/man/edit.html deleted file mode 100644 index f11aa51..0000000 --- a/montaukos.org/docs/man/edit.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - edit(1) - MontaukOS Manual - - - - - - - - - -
-
-

edit(1)

-
- -
- -
NAME
-    edit - text editor for MontaukOS
-
-SYNOPSIS
-    edit [filename]
-
-DESCRIPTION
-    edit is an interactive text editor. When invoked with a filename,
-    it opens the file for editing. If the file does not exist, a new
-    empty buffer is created and will be saved to that path on write.
-
-    When invoked without arguments, edit opens an empty buffer. You
-    will be prompted for a filename when saving.
-
-KEYBOARD SHORTCUTS
-
-   Navigation
-    Arrow Keys      Move cursor up/down/left/right
-    Home            Move to start of line
-    End             Move to end of line
-    Page Up         Scroll up one page
-    Page Down       Scroll down one page
-
-   Editing
-    Backspace       Delete character before cursor
-    Delete          Delete character at cursor
-    Enter           Insert new line
-    Tab             Insert 4 spaces
-
-   Commands
-    Ctrl+S          Save file
-    Ctrl+Q          Quit (warns if unsaved changes)
-    Ctrl+F          Search for text
-    Ctrl+G          Find next occurrence
-
-DISPLAY
-    The top line shows the filename, a modified indicator [+],
-    and the current cursor position (Ln, Col).
-
-    The bottom line shows keyboard shortcuts or status messages.
-
-    Line numbers are displayed in a gutter on the left side.
-    Lines past the end of the file are marked with ~.
-
-EXAMPLES
-    edit intro.1            Edit a file
-    edit                    Open a new empty buffer
-
-SEE ALSO
-    cat(1), shell(1)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/fetch.html b/montaukos.org/docs/man/fetch.html deleted file mode 100644 index fc60de0..0000000 --- a/montaukos.org/docs/man/fetch.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - fetch(1) - MontaukOS Manual - - - - - - - - - -
-
-

fetch(1)

-
- -
- -
NAME
-    fetch - HTTP/HTTPS client for MontaukOS
-
-SYNOPSIS
-    fetch [-v] <url>
-    fetch [-v] <host> <port> [path]
-
-DESCRIPTION
-    fetch performs an HTTP/1.0 GET request and prints the response
-    body to the terminal. Supports both plain HTTP and HTTPS (TLS 1.2)
-    connections. By default only the body is printed.
-
-    In URL mode, the scheme (http:// or https://) determines whether
-    TLS is used. The port defaults to 80 for HTTP and 443 for HTTPS.
-
-    In legacy mode, the host and port are specified as separate
-    arguments and the connection is always plain HTTP.
-
-    The host may be an IP address or a hostname. Hostnames are
-    resolved via the configured DNS server.
-
-    If no path is given, "/" is used.
-
-OPTIONS
--v
-    Verbose mode. Print connection info, trust anchor count, TLS
-    handshake progress, and the HTTP status/size header before
-    the body.
-
-EXAMPLES
-    fetch https://icanhazip.com
-        Print your public IP address over HTTPS.
-
-    fetch http://icanhazip.com
-        Same, but over plain HTTP.
-
-    fetch -v https://example.com
-        Fetch a page with verbose output showing:
-            Connecting to example.com:443 (HTTPS)...
-            Loaded 128 trust anchors
-            TLS handshake...
-            TLS connection established
-            GET /
-            HTTP 200 OK (1256 bytes)
-
-    fetch 10.0.68.1 80 /
-        Fetch from a local server by IP (legacy syntax).
-
-TLS SUPPORT
-    HTTPS connections use BearSSL for TLS 1.2. Server certificates
-    are validated against the system CA bundle at
-    0:/os/certs/ca-certificates.crt.
-
-    Entropy for the TLS handshake is provided by RDTSC-seeded
-    random data via the SYS_GETRANDOM syscall.
-
-KEYBOARD
-    Ctrl+Q      Abort the request
-
-SEE ALSO
-    ping(1), nslookup(1), tcpconnect(1), shell(1), syscalls(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/file.html b/montaukos.org/docs/man/file.html deleted file mode 100644 index e6571f3..0000000 --- a/montaukos.org/docs/man/file.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - file(2) - MontaukOS Manual - - - - - - - - - -
-
-

file(2)

-
- -
- -
NAME
-    open, read, getsize, close, readdir - file I/O system calls
-
-SYNOPSIS
-    int montauk::open(const char* path);
-    int montauk::read(int handle, uint8_t* buf, uint64_t offset, uint64_t size);
-    uint64_t montauk::getsize(int handle);
-    void montauk::close(int handle);
-    int montauk::readdir(const char* path, const char** names, int max);
-
-DESCRIPTION
-    MontaukOS provides a Virtual File System (VFS) with read/write
-    support. Drive 0 is the boot ramdisk; additional drives may be
-    mounted from GPT partitions backed by FAT32 or ext2 (see
-    syscalls(2), STORAGE section). Files are accessed via paths in
-    the format "<drive>:/<path>".
-
-   open
-    Opens a file and returns a non-negative handle on success, or a
-    negative value on error (file not found, no free handles).
-
-        int h = montauk::open("0:/os/hello.elf");
-
-   read
-    Reads up to 'size' bytes starting at 'offset' into 'buf'.
-    Returns the number of bytes actually read, or negative on error.
-    There is no implicit file position -- the offset is explicit on
-    every call.
-
-        uint8_t buf[512];
-        int n = montauk::read(h, buf, 0, 512);
-
-   getsize
-    Returns the total size in bytes of the file.
-
-        uint64_t sz = montauk::getsize(h);
-
-   close
-    Closes the file handle and frees kernel resources.
-
-        montauk::close(h);
-
-   readdir
-    Lists entries in a directory. Up to 'max' entry names (VFS cap
-    256, driver-backed listings such as 0:/os/ cap 128) are written
-    to the 'names' array. The kernel allocates a user-accessible
-    page for the string data automatically. Directory entries are
-    returned with a trailing slash.
-
-        const char* entries[64];
-        int count = montauk::readdir("0:/", entries, 64);
-        // entries: "os/", "apps/", "man/", "www/", "users/", ...
-
-    For directories that may contain more entries than fit in one
-    call, use montauk::readdir_at(path, names, max, startIndex) and
-    advance startIndex by the returned count until it returns 0.
-
-READING PATTERN
-    The standard pattern for reading a file:
-
-        int h = montauk::open("0:/man/intro.1");
-        uint64_t size = montauk::getsize(h);
-        uint8_t buf[512];
-        uint64_t off = 0;
-        while (off < size) {
-            uint64_t chunk = size - off;
-            if (chunk > 511) chunk = 511;
-            int n = montauk::read(h, buf, off, chunk);
-            if (n <= 0) break;
-            buf[n] = '\0';
-            montauk::print((const char*)buf);
-            off += n;
-        }
-        montauk::close(h);
-
-WRITING, DELETING, RENAMING
-    int montauk::fcreate(const char* path);
-    int montauk::fwrite(int handle, const uint8_t* buf, uint64_t offset, uint64_t size);
-    int montauk::fdelete(const char* path);
-    int montauk::fmkdir(const char* path);
-    int montauk::frename(const char* oldPath, const char* newPath);
-
-    fcreate creates a new file and returns a handle. fwrite writes
-    bytes at the given offset. fdelete removes a file, fmkdir
-    creates a directory, and frename renames or moves a file or
-    directory (the basis for file manager move operations).
-
-    On drive 0 (the ramdisk), changes persist only until reboot --
-    the ramdisk is reloaded from the USTAR archive on each boot. On
-    disk-backed drives (FAT32/ext2 partitions mounted with
-    montauk::fs_mount), changes are written through to storage; use
-    montauk::fs_sync() to flush caches before power-off.
-
-NOTES
-    Drive 0 is loaded at boot from a USTAR tar archive into RAM.
-    Other drives are mounted on demand from GPT partitions on
-    SATA/NVMe/USB block devices; see syscalls(2), STORAGE and
-    DEVICES sections.
-
-SEE ALSO
-    syscalls(2), spawn(2), malloc(3)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/fontscale.html b/montaukos.org/docs/man/fontscale.html deleted file mode 100644 index eacddd7..0000000 --- a/montaukos.org/docs/man/fontscale.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - fontscale(1) - MontaukOS Manual - - - - - - - - - -
-
-

fontscale(1)

-
- -
- -
NAME
-    fontscale - get or set terminal font scale
-
-SYNOPSIS
-    fontscale
-    fontscale <n>
-    fontscale <x> <y>
-
-DESCRIPTION
-    Controls the terminal font scale factor. The Flanterm terminal
-    emulator renders text at a configurable scale multiplier.
-    Increasing the scale makes text larger, which is useful on
-    high-resolution displays or real hardware where text may be
-    too small to read comfortably.
-
-    With no arguments, prints the current scale factor and terminal
-    dimensions.
-
-    With one argument, sets both the horizontal and vertical scale
-    to the same value.
-
-    With two arguments, sets asymmetric horizontal and vertical
-    scale factors independently.
-
-    Valid scale values are 1 through 8. After rescaling, the screen
-    is cleared.
-
-OUTPUT
-    fontscale
-        Scale: 1x1 (160 cols x 50 rows)
-
-    fontscale 2
-        Scale set to 2x2 (80 cols x 25 rows)
-
-EXAMPLES
-    fontscale           Show current scale and dimensions
-    fontscale 2         Double the font size
-    fontscale 3 2       3x horizontal, 2x vertical
-    fontscale 1         Reset to default size
-
-SEE ALSO
-    shell(1), syscalls(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/framebuffer.html b/montaukos.org/docs/man/framebuffer.html deleted file mode 100644 index 45446bd..0000000 --- a/montaukos.org/docs/man/framebuffer.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - framebuffer(2) - MontaukOS Manual - - - - - - - - - -
-
-

framebuffer(2)

-
- -
- -
NAME
-    fb_info, fb_map - direct framebuffer access
-
-SYNOPSIS
-    void montauk::fb_info(montauk::abi::FbInfo* info);
-    void* montauk::fb_map();
-
-DESCRIPTION
-    These syscalls allow userspace programs to access the linear
-    framebuffer directly for graphical output.
-
-   fb_info
-    Fills in an FbInfo structure with the framebuffer geometry:
-
-        montauk::abi::FbInfo fb;
-        montauk::fb_info(&fb);
-        // fb.width, fb.height, fb.pitch, fb.bpp
-
-    The pitch is the number of bytes per scanline (may be larger
-    than width * 4 due to alignment). bpp is always 32.
-
-   fb_map
-    Maps the physical framebuffer into the process address space at
-    a fixed virtual address (0x50000000) and returns that address.
-
-        uint32_t* pixels = (uint32_t*)montauk::fb_map();
-
-    Each pixel is a 32-bit value in 0xAARRGGBB format (blue in the
-    low byte). Writing to this memory directly updates the screen.
-
-PIXEL FORMAT
-        Bits 31-24:  Alpha (unused, typically 0xFF)
-        Bits 23-16:  Red
-        Bits 15-8:   Green
-        Bits 7-0:    Blue
-
-    Example: red = 0x00FF0000, green = 0x0000FF00, blue = 0x000000FF
-
-EXAMPLE
-    Fill the screen with blue:
-
-        montauk::abi::FbInfo fb;
-        montauk::fb_info(&fb);
-        uint32_t* pixels = (uint32_t*)montauk::fb_map();
-
-        for (uint64_t y = 0; y < fb.height; y++) {
-            uint32_t* row = (uint32_t*)((uint8_t*)pixels + y * fb.pitch);
-            for (uint64_t x = 0; x < fb.width; x++) {
-                row[x] = 0x000000FF;
-            }
-        }
-
-NOTES
-    After mapping, the cursor overlay is not composited. Programs
-    that use the framebuffer take full control of screen output.
-
-    Only one mapping per process is supported. Calling fb_map()
-    multiple times returns the same address.
-
-SEE ALSO
-    syscalls(2), malloc(3)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/index.html b/montaukos.org/docs/man/index.html deleted file mode 100644 index 8006596..0000000 --- a/montaukos.org/docs/man/index.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - Man Pages - MontaukOS - - - - - - - - - -
-
-

Man Pages

-
- -
- -

-Manual pages for MontaukOS, viewable in-system with the man(1) command. -

- -

User Commands (Section 1)

- - - -

System Calls (Section 2)

- - - -

Library Functions (Section 3)

- - - -

File Formats / Reference (Section 5)

- - - -

Miscellaneous (Section 7)

- - - -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/init.html b/montaukos.org/docs/man/init.html deleted file mode 100644 index 3b0ff20..0000000 --- a/montaukos.org/docs/man/init.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - init(1) - MontaukOS Manual - - - - - - - - - -
-
-

init(1)

-
- -
- -
NAME
-    init - MontaukOS init system
-
-SYNOPSIS
-    Spawned automatically by the kernel as PID 0.
-
-DESCRIPTION
-    init is the first userspace process started by the MontaukOS
-    kernel. It chains system services in sequence, then launches
-    the interactive shell.
-
-    Each service is spawned as a child process. init waits for it
-    to exit before starting the next one. If a service fails to
-    spawn, init logs an error and continues to the next stage.
-
-    Log output is timestamped and color-coded:
-
-        HH:MM:SS   INFO   init  Starting dhcp
-        HH:MM:SS     OK   init  dhcp finished (pid 1)
-
-BOOT SEQUENCE
-    The following services are started in order:
-
-        1. 0:/os/dhcp.elf     Obtain network configuration via DHCP
-        2. 0:/os/shell.elf    Launch the interactive shell
-
-    After the shell exits, init enters an idle loop.
-
-LOG LEVELS
-    init uses four log levels, each with a distinct color:
-
-        OK      Green    Service completed successfully
-        INFO    Cyan     Informational (service starting, etc.)
-        WARN    Yellow   Non-fatal warning
-        FAIL    Red      Service failed to start
-
-SEE ALSO
-    dhcp(1), shell(1), syscalls(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/intro.html b/montaukos.org/docs/man/intro.html deleted file mode 100644 index 8c0b637..0000000 --- a/montaukos.org/docs/man/intro.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - intro(1) - MontaukOS Manual - - - - - - - - - -
-
-

intro(1)

-
- -
- -
NAME
-    intro - introduction to MontaukOS userspace
-
-DESCRIPTION
-    MontaukOS is a hobbyist 64-bit operating system written in C++20,
-    currently at version 0.1.7 (API version 8). Userspace programs
-    run in Ring 3, are loaded as static ELF64 binaries, and
-    communicate with the kernel through the x86-64 SYSCALL/SYSRET
-    mechanism (150 syscalls -- see syscalls(2)).
-
-    Programs are compiled with a freestanding cross-compiler and
-    linked at virtual address 0x400000. There is no standard C
-    library for C++ programs -- all system interaction goes through
-    the montauk:: syscall wrappers. A desktop environment with a
-    window server, GUI apps, and Bluetooth/audio/networking stacks
-    runs on top of the same syscall API.
-
-GETTING STARTED
-    To write a new system/CLI program, create a directory under
-    programs/src/ with a main.cpp file. The entry point is:
-
-        extern "C" void _start() { ... }
-
-    There is no argc/argv. Use montauk::getargs() to retrieve any
-    arguments passed by the parent process. Include <montauk/syscall.h>
-    for the full typed syscall API. GUI apps additionally use
-    win_create()/win_poll()/win_present() from montauk/Window.hpp
-    (see framebuffer(2)).
-
-    Build with:
-
-        cd programs && make
-
-    System/CLI binaries appear in programs/bin/os/; GUI app bundles
-    (ELF + manifest.toml + icon) appear under programs/bin/apps/<name>/.
-
-RAMDISK LAYOUT
-    The boot ramdisk is mounted as drive 0 with the following
-    directory structure:
-
-        0:/os/          System/CLI binaries (shell, init, man, etc.),
-                        plus os-owned data: certs/, firmware/,
-                        licenses/, wallpapers/
-        0:/apps/        GUI app bundles, one directory per app
-                        (<app>.elf + manifest.toml + icon)
-        0:/config/      System-wide config TOMLs
-        0:/users/<name>/  Per-user home directories (created at
-                        login), with Music/, Videos/, Pictures/,
-                        config/ subdirectories
-        0:/fonts/       Shared fonts
-        0:/icons/       Shared icons
-        0:/man/         Manual pages
-        0:/www/         Web server content
-        0:/lib/         Lua and TinyCC toolchain payloads
-        0:/boot/        Kernel, bootloader, ramdisk image
-
-    There is no 0:/games/, 0:/common/, 0:/home/, or 0:/etc/ --
-    these were used by earlier single-user releases and no longer
-    exist. Games and other GUI programs (including doom) ship as
-    bundles under 0:/apps/.
-
-SHELL
-    The interactive shell is the primary way to interact with
-    MontaukOS. Commands are resolved against the current directory
-    first, then 0:/os/. Type 'help' at the shell prompt for a list
-    of commands. Use 'man shell' for detailed shell documentation.
-
-MAN PAGES
-    The following man pages are available:
-
-        intro(1)        This page
-        shell(1)        Shell commands reference
-        init(1)         Init system
-        dhcp(1)         DHCP client
-        fetch(1)        HTTP client
-        ping(1)         ICMP ping
-        nslookup(1)     DNS lookup
-        fontscale(1)    Terminal font scaling
-        edit(1)         Text editor
-        man(1)          The man command itself
-        printctl(1)     Printer control
-        printd(1)       Print spooler daemon
-        wiki(1)         Wikipedia article viewer
-        legal(7)        Copyright and legal information
-        tls-errors(5)   TLS/BearSSL error reference
-        syscalls(2)     Overview of all syscalls
-        spawn(2)        Process spawning
-        file(2)         File I/O syscalls
-        framebuffer(2)  Framebuffer access
-        malloc(3)       Memory allocation
-
-SEE ALSO
-    shell(1), syscalls(2), malloc(3)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/legal.html b/montaukos.org/docs/man/legal.html deleted file mode 100644 index a14810d..0000000 --- a/montaukos.org/docs/man/legal.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - legal(7) - MontaukOS Manual - - - - - - - - - -
-
-

legal(7)

-
- -
- -
NAME
-    MontaukOS legal/copyright information
-
-DESCRIPTION
-    Copyright (c) 2025-2026 Daniel Hammer, et al.
-        (includes contributors to other projects, i.e. The Limine Bootloader. Please refer to any other project's own license.)
-
-    MontaukOS is source-available software, provided under the terms of the
-    MontaukOS Software License. The full license text is on this system at
-    0:/os/licenses/LICENSE.txt.
-
-    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
-    FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-    COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-    IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-    CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-    == License for the Limine C++ template (certain portions derive therefrom) ==
-    Copyright (C) 2023-2026 Mintsuki and contributors.
-
-    Permission to use, copy, modify, and/or distribute this software for any
-    purpose with or without fee is hereby granted.
-
-    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-    REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
-    FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-    INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-    LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
-    OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-    PERFORMANCE OF THIS SOFTWARE.
-
-THIRD-PARTY COMPONENTS
-    MontaukOS is distributed together with third-party components that remain
-    under their own licenses, including:
-
-    * Flat Remix icon theme, Copyright (C) Daniel Ruiz de Alegria - GPLv3
-    * DOOM engine (doom.elf, via doomgeneric), Copyright (C) id Software, Inc.
-      and contributors - GPLv2
-    * Limine bootloader, Copyright (C) Mintsuki and contributors - BSD 2-Clause
-    * BearSSL, Copyright (c) Thomas Pornin - MIT
-    * stb_image, Copyright (c) Sean Barrett - MIT
-    * JetBrains Mono font, Copyright The JetBrains Mono Project Authors - OFL-1.1
-    * Noto Serif font, Copyright The Noto Project Authors - OFL-1.1
-    * Roboto font, Copyright The Roboto Project Authors - OFL-1.1
-    * C059 font (URW Base 35), Copyright (C) (URW)++ Design and Development
-      GmbH - AGPLv3 with font-embedding exception
-    * Tiny C Compiler (tcc.elf, 0:/sdk/tcc), Copyright (c) Fabrice Bellard and
-      contributors - LGPL-2.1
-    * Lua (lua.elf, 0:/sdk/lua), Copyright (C) Lua.org, PUC-Rio - MIT
-    * Mozilla CA certificate bundle (0:/os/certs), Mozilla CA Certificate
-      Program - MPL-2.0
-    * Intel Bluetooth firmware (0:/os/firmware/intel), Copyright (c) Intel
-      Corporation - Intel redistributable firmware license
-    * Default wallpaper photo (0:/os/wallpapers), by Nikhil Kumar -
-      Unsplash License
-
-    Full license texts and notices are on this system in 0:/os/licenses/.
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/malloc.html b/montaukos.org/docs/man/malloc.html deleted file mode 100644 index c7b80c8..0000000 --- a/montaukos.org/docs/man/malloc.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - malloc(3) - MontaukOS Manual - - - - - - - - - -
-
-

malloc(3)

-
- -
- -
NAME
-    malloc, mfree, realloc - userspace heap allocation
-
-SYNOPSIS
-    void* montauk::malloc(uint64_t size);
-    void montauk::mfree(void* ptr);
-    void* montauk::realloc(void* ptr, uint64_t size);
-
-DESCRIPTION
-    The userspace heap provides dynamic memory allocation on top of
-    the kernel's page-mapping syscall (SYS_ALLOC). Include the
-    header <montauk/heap.h> to use these functions.
-
-   malloc
-    Allocates 'size' bytes from the free list. Returns a 16-byte
-    aligned pointer, or nullptr on failure. When the free list is
-    empty, it requests more pages from the kernel via SYS_ALLOC
-    (minimum 16 KiB growth, initial seed of 64 KiB).
-
-        char* buf = (char*)montauk::malloc(1024);
-
-   mfree
-    Returns the block to the userspace free list. No syscall is
-    made -- the memory stays mapped and is immediately reusable.
-    Passing nullptr is a safe no-op.
-
-        montauk::mfree(buf);
-
-   realloc
-    Resizes the allocation to 'size' bytes. Allocates a new block,
-    copies the smaller of old/new sizes, and frees the old block.
-    If ptr is nullptr, behaves like malloc.
-
-        buf = (char*)montauk::realloc(buf, 2048);
-
-IMPLEMENTATION
-    The allocator uses a linked free-list with first-fit search.
-    Blocks larger than needed are split. The allocation header is
-    16 bytes (magic + size). All allocations are 16-byte aligned.
-
-    The heap grows by requesting pages from the kernel via
-    SYS_ALLOC. These pages are never returned to the kernel (since
-    SYS_FREE is currently a no-op), but mfree makes them available
-    for future malloc calls within the process.
-
-LOW-LEVEL PAGE API
-    For large allocations or when direct page control is needed:
-
-        void* montauk::alloc(uint64_t size);  // SYS_ALLOC
-        void  montauk::free(void* ptr);       // SYS_FREE (no-op)
-
-    alloc() maps zeroed pages starting at 0x40000000 and growing
-    upward. Size is rounded up to 4 KiB page boundaries.
-
-SEE ALSO
-    syscalls(2), file(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/man.html b/montaukos.org/docs/man/man.html deleted file mode 100644 index 16b72af..0000000 --- a/montaukos.org/docs/man/man.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - man(1) - MontaukOS Manual - - - - - - - - - -
-
-

man(1)

-
- -
- -
NAME
-    man - display manual pages
-
-SYNOPSIS
-    man topic
-    man section topic
-
-DESCRIPTION
-    The man command displays manual pages from the ramdisk in a
-    fullscreen pager. Pages are stored as plain text files with
-    simple formatting directives.
-
-    If no section is specified, sections 1 through 7 are searched
-    in order. If a section number is given, only that section is
-    checked.
-
-KEY BINDINGS
-
-Navigation
-    j, Down Arrow     Scroll down one line
-    k, Up Arrow       Scroll up one line
-    Space, Page Down  Scroll down one page
-    b, Page Up        Scroll up one page
-    g, Home           Go to top
-    G, End            Go to bottom
-    q                 Quit
-
-SECTIONS
-    1   User commands and programs
-    2   System calls (kernel interface)
-    3   Library functions (userspace libraries)
-    7   Miscellaneous (legal, conventions)
-
-FILES
-    Man pages are stored on the ramdisk at:
-
-        0:/man/<topic>.<section>
-
-    For example, man intro reads 0:/man/intro.1
-
-EXAMPLES
-    man intro          View the introduction
-    man 2 syscalls     View syscall overview (section 2)
-    man malloc         View malloc documentation
-    man legal          View copyright information
-
-SEE ALSO
-    intro(1), shell(1), syscalls(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/nslookup.html b/montaukos.org/docs/man/nslookup.html deleted file mode 100644 index bd56b01..0000000 --- a/montaukos.org/docs/man/nslookup.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - nslookup(1) - MontaukOS Manual - - - - - - - - - -
-
-

nslookup(1)

-
- -
- -
NAME
-    nslookup - DNS hostname lookup
-
-SYNOPSIS
-    nslookup <hostname>
-
-DESCRIPTION
-    Resolves a hostname to an IPv4 address using the configured
-    DNS server and prints the result.
-
-    The kernel DNS resolver sends a UDP query to port 53 of the
-    configured DNS server and waits up to 5 seconds for a reply.
-    Results are cached in an 8-entry kernel cache with TTL support.
-
-OUTPUT
-    Server:   10.0.68.1
-    Name:     example.com
-    Address:  93.184.216.34
-    Time:     3ms
-
-    If the lookup fails:
-
-    Could not resolve: badhost.invalid
-
-DNS CONFIGURATION
-    The DNS server address is obtained automatically via DHCP.
-    It can also be viewed and set with ifconfig. The default
-    is 10.0.68.1 (QEMU user-mode networking).
-
-EXAMPLES
-    nslookup google.com
-    nslookup icanhazip.com
-
-SEE ALSO
-    ping(1), fetch(1), dhcp(1), ifconfig(1), syscalls(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/ping.html b/montaukos.org/docs/man/ping.html deleted file mode 100644 index a8d1e1c..0000000 --- a/montaukos.org/docs/man/ping.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - ping(1) - MontaukOS Manual - - - - - - - - - -
-
-

ping(1)

-
- -
- -
NAME
-    ping - send ICMP echo requests
-
-SYNOPSIS
-    ping <host>
-
-DESCRIPTION
-    Sends 4 ICMP echo requests to the specified host and prints
-    the round-trip time for each reply.
-
-    The host may be an IP address or a hostname. Hostnames are
-    resolved via the configured DNS server.
-
-    Each request has a 3-second timeout. Requests are sent at
-    1-second intervals.
-
-OUTPUT
-    PING example.com (93.184.216.34)
-      Reply from 93.184.216.34: time=12ms
-      Reply from 93.184.216.34: time=11ms
-      Reply from 93.184.216.34: time=13ms
-      Reply from 93.184.216.34: time=11ms
-
-    If a reply is not received within the timeout:
-
-      Request timed out
-
-EXAMPLES
-    ping 10.0.68.1
-        Ping the gateway by IP address.
-
-    ping google.com
-        Ping by hostname (requires DNS).
-
-SEE ALSO
-    nslookup(1), ifconfig(1), shell(1), syscalls(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/printctl.html b/montaukos.org/docs/man/printctl.html deleted file mode 100644 index 25b4854..0000000 --- a/montaukos.org/docs/man/printctl.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - printctl(1) - MontaukOS Manual - - - - - - - - - -
-
-

printctl(1)

-
- -
- -
NAME
-printctl - configure printers and submit print jobs
-SYNOPSIS
-printctl
-command
-[options]
-DESCRIPTION
-printctl
-manages the MontaukOS userspace print spooler and submits print jobs to IPP printers.
-COMMANDS
-
-set-printer URI
-    Store the default printer URI.
-
-show-printer
-    Print the configured default printer URI.
-
-print FILE [--printer URI] [--name JOB] [--wait]
-    Queue a file for printing.
-
-test-page [--printer URI] [--wait] [--no-wait]
-    Generate and queue a simple test page.
-
-status [--verbose]
-    Show daemon state and queued, active, completed, and failed jobs.
-
-inspect JOB-ID
-    Show full metadata and debug details for a queued, active, completed, or failed job.
-
-probe [URI]
-    Probe the configured printer, print host and resolution details, and show IPP capability diagnostics.
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/printd.html b/montaukos.org/docs/man/printd.html deleted file mode 100644 index c9f3239..0000000 --- a/montaukos.org/docs/man/printd.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - printd(1) - MontaukOS Manual - - - - - - - - - -
-
-

printd(1)

-
- -
- -
NAME
-printd - MontaukOS userspace print spooler daemon
-SYNOPSIS
-printd
-DESCRIPTION
-printd
-monitors the print spool directories, claims queued jobs, and delivers them to IPP printers.
-
-It is normally launched automatically by
-init(1)
-and does not require direct user interaction.
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/shell.html b/montaukos.org/docs/man/shell.html deleted file mode 100644 index 5f0ff41..0000000 --- a/montaukos.org/docs/man/shell.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - - shell(1) - MontaukOS Manual - - - - - - - - - -
-
-

shell(1)

-
- -
- -
NAME
-    shell - MontaukOS interactive command shell
-
-DESCRIPTION
-    The MontaukOS shell is a command interpreter launched by init
-    after system services have started. It provides command
-    execution, file navigation, shell variables, command chaining,
-    tab completion, and command history.
-
-    Commands are either shell builtins or external programs. When
-    a command is not a builtin, the shell searches for a matching
-    ELF binary and executes it as a child process.
-
-COMMAND RESOLUTION
-    When a non-builtin command is entered, the shell searches for
-    a matching binary in the following order:
-
-        1. <cwd>/<command>         (exact name, e.g. "hello.elf")
-        2. <cwd>/<command>.elf
-        3. 0:/os/<command>.elf
-        4. 0:/os/<command>          (no extension)
-        5. If on a non-zero drive, the drive root: <drive>:/<command>[.elf]
-
-    A command containing a "/" (or an explicit drive prefix, or a
-    leading "." or "/") is instead treated as a direct path and
-    resolved by the kernel against the process CWD, trying the
-    path as-is and then with ".elf" appended.
-
-    The first match is spawned and the shell waits for it to exit.
-    If no match is found, the shell prints:
-
-        <command>: command not found
-
-    Arguments after the command name are passed to the spawned
-    process.
-
-BUILTINS
-
-   help
-    Display a categorized list of available commands.
-
-   ls [dir]
-    List files in the current directory, or in the specified
-    directory. Directory entries are shown with a trailing slash.
-    Examples: ls, ls man, ls os
-
-   cd [dir]
-    Change the working directory. With no argument, returns to the
-    logged-in user's home directory (0:/users/<user>); with /,
-    returns to the drive root. Use cd .. to go up one level.
-    The shell prompt reflects the current directory.
-    Examples: cd os, cd .., cd
-
-   pwd
-    Print the current working directory as an absolute path
-    (e.g. "0:/os").
-
-   echo [-n] ...
-    Print the arguments. -n suppresses the trailing newline.
-
-   set [VAR=value]
-    With no argument, list all shell variables (built-in and
-    user-defined). With VAR=value, set a variable. With a bare
-    name, print that variable's value.
-
-   unset VAR
-    Remove a user-defined shell variable.
-
-   true / false
-    Return exit status 0 / 1 without doing anything. Useful with
-    && and ||.
-
-   N:
-    A bare "<number>:" (e.g. "1:") switches the current drive to
-    drive N and resets the working directory to that drive's root.
-
-   exit
-    Terminate the shell process (with the last command's exit code).
-
-SYNTAX
-   Variables
-    NAME=value          Set a shell variable (no leading $)
-    $VAR or ${VAR}       Expand a variable's value
-    $?                   Exit status of the last command
-    $USER, $HOME, $PWD   Built-in dynamic variables (session user,
-                        home directory, current directory)
-    \$                   Escape a literal '$'
-
-   Tilde expansion
-    A leading ~ expands to the session home directory
-    (0:/users/<user>) when followed by end-of-string, '/', or a
-    space.
-
-   Command chaining
-    cmd1 ; cmd2          Run cmd2 unconditionally after cmd1
-    cmd1 && cmd2         Run cmd2 only if cmd1 succeeded (exit 0)
-    cmd1 || cmd2         Run cmd2 only if cmd1 failed (nonzero exit)
-
-    Single and double quotes protect ;, &&, and || from being
-    treated as separators.
-
-   Comments
-    A '#' outside of quotes starts a comment; the rest of the line
-    is ignored.
-
-EXTERNAL COMMANDS
-    All external commands live in 0:/os/ (see COMMAND RESOLUTION).
-    Where a dedicated man page exists it is noted below; run
-    'man <command>' for details.
-
-   File commands
-    cat <file>          Display file contents
-    edit [file]         Text editor -- see edit(1)
-    copy <src> <dst>    Copy a file
-    move <src> <dst>    Move/rename a file
-    rm <file>           Remove a file
-    touch <file>        Create an empty file
-
-   System commands
-    man <topic>         View manual pages -- see man(1)
-    whoami              Print the current username
-    info / mtkfetch     Show system information
-    date                Show current date and time
-    uptime              Show system uptime
-    proclist            List running processes
-    power               CPU power/thermal status (power [watch [secs]])
-    clear               Clear the screen and framebuffer
-    fontscale [n]       Get or set terminal font scale -- see fontscale(1)
-    lua                 Lua interpreter
-    tcc                 TinyCC (in-system C compiler)
-    reset               Reboot the system
-    shutdown            Shut down the system
-
-   Network commands
-    ping <host>         Send ICMP echo requests -- see ping(1)
-    nslookup <host>     DNS lookup -- see nslookup(1)
-    ifconfig            Show/set network configuration
-    tcpconnect <host> <port>  Interactive TCP client
-    irc                 IRC client
-    dhcp                DHCP client -- see dhcp(1)
-    fetch <url>         HTTP/HTTPS client (TLS 1.2) -- see fetch(1)
-    wiki <title>        Wikipedia article viewer -- see wiki(1)
-    httpd               HTTP server
-
-    Network commands accept both IP addresses and hostnames.
-    Hostnames are resolved via the configured DNS server.
-
-   Bluetooth
-    btlist              List connected Bluetooth devices
-    btbonds              List bonded (paired) Bluetooth devices
-
-   Software-defined radio
-    sdr [freqMHz [rateHz]]  Receive and report basic signal
-                        statistics from an attached RTL-SDR dongle
-
-    GUI applications (window server programs, not run from the
-    shell prompt as text commands) live under 0:/apps/, one bundle
-    per app -- e.g. doom, terminal, texteditor, spreadsheet,
-    wordprocessor, paint, calculator, network, bluetooth, audio,
-    disks, devexplorer, procmgr, powermgr, printers, timezone,
-    weather, wikipedia. There is no 0:/games/ directory.
-
-TAB COMPLETION
-    Pressing Tab completes the word under the cursor against, in
-    order: executable names in 0:/os/, shell builtins, and file/
-    directory entries in the current directory. A single match is
-    completed inline; multiple matches are listed below the prompt.
-
-INPUT
-    The shell uses non-blocking keyboard input via SYS_GETKEY (with
-    SYS_INPUT_WAIT to sleep between events) to support arrow key
-    detection. Lines are limited to 255 characters.
-
-   Editing
-    Backspace       Delete character before cursor
-    Tab             Tab-complete the current word
-    Enter           Execute the command line
-
-   History
-    The shell stores the last 32 unique commands. Duplicate
-    consecutive entries are suppressed.
-
-    Up Arrow        Recall previous command
-    Down Arrow      Recall next command (or clear line)
-
-PROMPT
-    The prompt displays the current drive and working directory:
-
-        0:/> _              (at root of drive 0)
-        0:/os> _            (in os/ directory)
-        1:/> _              (at root of drive 1)
-
-SEE ALSO
-    man(1), intro(1), syscalls(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/spawn.html b/montaukos.org/docs/man/spawn.html deleted file mode 100644 index 1ab9179..0000000 --- a/montaukos.org/docs/man/spawn.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - spawn(2) - MontaukOS Manual - - - - - - - - - -
-
-

spawn(2)

-
- -
- -
NAME
-    spawn, waitpid - create and wait for processes
-
-SYNOPSIS
-    int montauk::spawn(const char* path, const char* args = nullptr);
-    void montauk::waitpid(int pid);
-    int montauk::getargs(char* buf, uint64_t maxLen);
-
-DESCRIPTION
-
-   spawn
-    Loads the ELF64 binary at the given VFS path and creates a new
-    process. The path must include the drive prefix, for example:
-
-        int pid = montauk::spawn("0:/os/hello.elf");
-
-    An optional second argument passes a string to the child:
-
-        int pid = montauk::spawn("0:/os/man.elf", "intro");
-
-    The new process gets its own PML4 page table, a 32 KiB stack
-    (at 0x7FFFFF7000-0x7FFFFFF000), and begins executing at the
-    ELF entry point (_start).
-
-    Returns the new process's PID on success, or -1 on failure.
-    Failure occurs when there are no free process slots (max 256),
-    the file cannot be found, or the ELF is invalid.
-
-   waitpid
-    Blocks the calling process until the process with the given PID
-    has exited. Internally, this yields the CPU in a loop:
-
-        montauk::waitpid(pid);
-
-    This is how the shell implements foreground process execution --
-    it spawns a child and waits for it to complete before showing
-    the next prompt.
-
-EXAMPLES
-    Spawn a program and wait for it:
-
-        int pid = montauk::spawn("0:/os/hello.elf");
-        if (pid < 0) {
-            montauk::print("spawn failed\n");
-        } else {
-            montauk::waitpid(pid);
-            montauk::print("child exited\n");
-        }
-
-   getargs
-    Copies the argument string into buf (up to maxLen bytes, always
-    null-terminated). Returns the number of characters copied, or
-    -1 on error.
-
-        char args[256];
-        montauk::getargs(args, sizeof(args));
-
-    The argument string is set by the parent when calling spawn().
-    If no arguments were provided, the buffer will be empty.
-
-NOTES
-    The _start() entry point receives no argc/argv. Use getargs()
-    to retrieve the argument string passed by the parent process.
-
-    Process exit codes are not yet collected by waitpid.
-
-SEE ALSO
-    syscalls(2), file(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/syscalls.html b/montaukos.org/docs/man/syscalls.html deleted file mode 100644 index 2957a64..0000000 --- a/montaukos.org/docs/man/syscalls.html +++ /dev/null @@ -1,906 +0,0 @@ - - - - - - - syscalls(2) - MontaukOS Manual - - - - - - - - - -
-
-

syscalls(2)

-
- -
- -
NAME
-    syscalls - overview of MontaukOS system calls
-
-DESCRIPTION
-    MontaukOS provides 150 system calls (numbers 0-149, sparsely
-    assigned -- not every number in the range is in use) for
-    userspace programs. Syscalls use the x86-64 SYSCALL instruction
-    with the following register convention:
-
-        RAX   Syscall number (in) / return value (out)
-        RDI   Argument 1
-        RSI   Argument 2
-        RDX   Argument 3
-        R10   Argument 4
-        R8    Argument 5
-        R9    Argument 6
-
-    Include <Api/Syscall.hpp> for the numeric SYS_* constants and
-    ABI structs, and <montauk/syscall.h> for typed wrappers in the
-    montauk:: namespace. This page groups syscalls the same way the
-    kernel source does (one subsystem header per group).
-
-PROCESS MANAGEMENT
-SYS_EXIT (0)
-    Terminate the calling process.
-        [[noreturn]] void montauk::exit(int code = 0);
-
-SYS_YIELD (1)
-    Yield the remainder of the time slice.
-        void montauk::yield();
-
-SYS_SLEEP_MS (2)
-    Sleep for at least the given number of milliseconds.
-        void montauk::sleep_ms(uint64_t ms);
-
-SYS_GETPID (3)
-    Return the PID of the calling process.
-        int montauk::getpid();
-
-SYS_SPAWN (20)
-    Spawn a new process from an ELF binary on the VFS.
-        int montauk::spawn(const char* path, const char* args = nullptr);
-
-SYS_WAITPID (23)
-    Block until the given process has exited.
-        void montauk::waitpid(int pid);
-
-SYS_GETARGS (25)
-    Get the argument string passed to this process at spawn time.
-        int montauk::getargs(char* buf, uint64_t maxLen);
-
-SYS_PROCLIST (61)
-    List running processes (pid, parent, state, name, heap usage,
-    accumulated CPU time).
-        int montauk::proclist(montauk::abi::ProcInfo* buf, int max);
-
-SYS_KILL (62)
-    Terminate another process by PID.
-        int montauk::kill(int pid);
-
-SYS_CHDIR (96)
-    Change the calling process's current working directory.
-        int montauk::chdir(const char* path);
-
-SYS_GETCWD (95)
-    Get the calling process's current working directory.
-        int montauk::getcwd(char* buf, uint64_t maxLen);
-
-SYS_SETUSER (92)
-    Associate a process with a logged-in user name (used by login/session
-    management).
-        int montauk::setuser(int pid, const char* name);
-
-SYS_GETUSER (93)
-    Get the user name associated with the calling process.
-        int montauk::getuser(char* buf, uint64_t maxLen);
-
-THREADING
-    Threads share the spawning process's address space and heap
-    (see montauk/heap.h for the heap lock). Declared in
-    montauk/thread.h.
-
-SYS_THREAD_SPAWN (130)
-    Spawn a new thread in the calling process. Returns a positive
-    TID on success, -1 on failure.
-        int montauk::thread_spawn(ThreadEntry entry, void* arg,
-                                  uint64_t stack_bytes = 0);
-
-SYS_THREAD_EXIT (131)
-    Terminate only the calling thread. If it is the main thread,
-    the whole process exits.
-        [[noreturn]] void montauk::thread_exit(int code = 0);
-
-SYS_THREAD_JOIN (132)
-    Block until the given TID exits, then reclaim its kernel state.
-        int montauk::thread_join(int tid, int* out_code = nullptr);
-
-SYS_THREAD_SELF (133)
-    Return the calling thread's TID (equals getpid() for the main
-    thread).
-        int montauk::thread_self();
-
-CONSOLE I/O
-SYS_PRINT (4)
-    Write a null-terminated string to the terminal.
-        void montauk::print(const char* text);
-
-SYS_PUTCHAR (5)
-    Write a single character to the terminal.
-        void montauk::putchar(char c);
-
-FILE I/O
-SYS_OPEN (6)
-    Open a file. Returns a handle or negative on error.
-        int montauk::open(const char* path);
-
-SYS_READ (7)
-    Read bytes from a file at a given offset.
-        int montauk::read(int h, uint8_t* buf, uint64_t off, uint64_t sz);
-
-SYS_GETSIZE (8)
-    Get the size of an open file in bytes.
-        uint64_t montauk::getsize(int handle);
-
-SYS_CLOSE (9)
-    Close a file handle.
-        void montauk::close(int handle);
-
-SYS_READDIR (10)
-    List directory entries (max 256 per call for VFS directories,
-    128 for driver-backed listings such as 0:/os/). For larger
-    directories use SYS_READDIR_AT.
-        int montauk::readdir(const char* path, const char** names, int max);
-
-SYS_READDIR_AT (136)
-    Paginated directory read. Returns entries starting at
-    startIndex; call repeatedly with startIndex advanced by the
-    returned count until it returns 0 to enumerate directories of
-    any size.
-        int montauk::readdir_at(const char* path, const char** names,
-                               int max, int startIndex);
-
-SYS_FWRITE (41)
-    Write bytes to a file at a given offset.
-        int montauk::fwrite(int handle, const uint8_t* buf,
-                           uint64_t offset, uint64_t size);
-
-SYS_FCREATE (42)
-    Create a new file on the target volume. Returns a handle or
-    negative on error.
-        int montauk::fcreate(const char* path);
-
-SYS_FDELETE (77)
-    Delete a file.
-        int montauk::fdelete(const char* path);
-
-SYS_FMKDIR (78)
-    Create a directory.
-        int montauk::fmkdir(const char* path);
-
-SYS_FRENAME (94)
-    Rename or move a file/directory (used as the basis for file
-    manager move operations).
-        int montauk::frename(const char* oldPath, const char* newPath);
-
-SYS_DRIVELIST (79)
-    List mounted drive numbers.
-        int montauk::drivelist(int* outDrives, int max);
-
-SYS_DRIVELABEL (124)
-    Get the volume label of a drive.
-        int montauk::drivelabel(int drive, char* outLabel, int maxLen);
-
-SYS_DRIVEKIND (127)
-    Get the block device kind backing a drive: 0=unknown/ramdisk,
-    1=SATA, 2=SATAPI, 3=NVMe, 4=USB mass storage.
-        int montauk::drivekind(int drive);
-
-MEMORY
-SYS_ALLOC (11)
-    Map zeroed pages into the process address space.
-        void* montauk::alloc(uint64_t size);
-
-SYS_FREE (12)
-    Reserved (currently a no-op).
-        void montauk::free(void* ptr);
-
-SYS_MEMSTATS (67)
-    Get kernel-wide physical memory usage (total/free/used bytes,
-    page size).
-        void montauk::memstats(montauk::abi::MemStats* out);
-
-TIMEKEEPING
-SYS_GETTICKS (13)
-    Get APIC timer ticks since boot.
-        uint64_t montauk::get_ticks();
-
-SYS_GETMILLISECONDS (14)
-    Get milliseconds elapsed since boot.
-        uint64_t montauk::get_milliseconds();
-
-SYS_GETTIME (28)
-    Get the current wall-clock date and time (UTC).
-    Fills a montauk::abi::DateTime struct with Year, Month, Day,
-    Hour, Minute, and Second fields.
-        void montauk::gettime(montauk::abi::DateTime* out);
-
-SYS_SETTZ (90)
-    Set the process/system timezone offset, in minutes from UTC.
-        void montauk::settz(int offset_minutes);
-
-SYS_GETTZ (91)
-    Get the current timezone offset, in minutes from UTC.
-        int montauk::gettz();
-
-SYSTEM
-SYS_GETINFO (15)
-    Get OS name, version string, API version, max process count,
-    and the monotonic kernel build number.
-        void montauk::get_info(montauk::abi::SysInfo* info);
-
-KEYBOARD
-SYS_ISKEYAVAILABLE (16)
-    Check if a key event is pending (non-blocking).
-        bool montauk::is_key_available();
-
-SYS_GETKEY (17)
-    Get the next key event (press or release).
-        void montauk::getkey(montauk::abi::KeyEvent* out);
-
-SYS_GETCHAR (18)
-    Block until a printable character is typed.
-        char montauk::getchar();
-
-SYS_INPUT_WAIT (123)
-    Block until the input serial number differs from
-    observedSerial or the timeout elapses; used to sleep
-    efficiently between input-driven redraws.
-        uint64_t montauk::input_wait(uint64_t observedSerial, uint64_t timeoutMs);
-
-MOUSE
-SYS_MOUSESTATE (47)
-    Get the current mouse position, scroll delta, and button mask.
-        void montauk::mouse_state(montauk::abi::MouseState* out);
-
-SYS_SETMOUSEBOUNDS (48)
-    Set the maximum X/Y the mouse cursor may reach (e.g. framebuffer
-    dimensions).
-        void montauk::set_mouse_bounds(int32_t maxX, int32_t maxY);
-
-NETWORKING
-SYS_PING (19)
-    Send an ICMP echo request and wait for reply.
-        int32_t montauk::ping(uint32_t ip, uint32_t timeoutMs = 3000);
-
-SYS_RESOLVE (44)
-    Resolve a hostname to an IPv4 address via DNS. Sends a UDP
-    query to the configured DNS server and waits up to 5 seconds
-    for a reply. Returns the IP in network byte order, or 0 on
-    failure. IP address strings (e.g. "10.0.0.1") are detected
-    and returned directly without a DNS query.
-        uint32_t montauk::resolve(const char* hostname);
-
-SYS_GETNETCFG (37)
-    Get the current network configuration (IP, mask, gateway, MAC,
-    DNS server).
-        void montauk::get_netcfg(montauk::abi::NetCfg* out);
-
-SYS_SETNETCFG (38)
-    Set the network configuration (IP, mask, gateway, DNS server).
-        int montauk::set_netcfg(const montauk::abi::NetCfg* cfg);
-
-SYS_NETSTATUS (125)
-    Get adapter status including driver name, link state, polling mode,
-    and RX/TX packet counters.
-        int montauk::net_status(montauk::abi::NetStatus* out);
-
-SOCKETS
-SYS_SOCKET (29)
-    Create a socket. type=SOCK_TCP (1) or SOCK_UDP (2).
-    Returns fd or -1.
-        int montauk::socket(int type);
-
-SYS_CONNECT (30)
-    Connect a TCP socket to a remote host.
-        int montauk::connect(int fd, uint32_t ip, uint16_t port);
-
-SYS_BIND (31)
-    Bind a socket to a local port for listening.
-        int montauk::bind(int fd, uint16_t port);
-
-SYS_LISTEN (32)
-    Start listening for incoming TCP connections.
-        int montauk::listen(int fd);
-
-SYS_ACCEPT (33)
-    Accept an incoming connection on a listening socket.
-    Returns a new socket fd for the client connection.
-        int montauk::accept(int fd);
-
-SYS_SEND (34)
-    Send data on a connected socket. Returns bytes sent.
-        int montauk::send(int fd, const void* data, uint32_t len);
-
-SYS_RECV (35)
-    Receive data from a connected socket. Returns bytes
-    received, 0 if no data available, or -1 on close/error.
-        int montauk::recv(int fd, void* buf, uint32_t maxLen);
-
-SYS_CLOSESOCK (36)
-    Close a socket and release its resources.
-        int montauk::closesocket(int fd);
-
-SYS_SENDTO (39)
-    Send a UDP datagram to a specific destination.
-        int montauk::sendto(int fd, const void* data, uint32_t len,
-                           uint32_t destIp, uint16_t destPort);
-
-SYS_RECVFROM (40)
-    Receive a UDP datagram. Returns the source address.
-        int montauk::recvfrom(int fd, void* buf, uint32_t maxLen,
-                             uint32_t* srcIp, uint16_t* srcPort);
-
-FRAMEBUFFER
-SYS_FBINFO (21)
-    Get framebuffer dimensions and format.
-        void montauk::fb_info(montauk::abi::FbInfo* info);
-
-SYS_FBMAP (22)
-    Map the framebuffer into process memory.
-        void* montauk::fb_map();
-
-TERMINAL
-SYS_TERMSIZE (24)
-    Get terminal dimensions (columns and rows).
-        void montauk::termsize(int* cols, int* rows);
-
-SYS_TERMSCALE (43)
-    Get or set the terminal font scale factor. When scale_x is 0,
-    returns the current scale as (scale_y << 32 | scale_x). When
-    scale_x is non-zero, sets the font scale and returns the new
-    terminal dimensions as (rows << 32 | cols).
-        void montauk::termscale(int scale_x, int scale_y);
-        void montauk::get_termscale(int* scale_x, int* scale_y);
-
-RANDOM
-SYS_GETRANDOM (45)
-    Fill a buffer with random bytes using RDTSC-seeded entropy.
-    Returns the number of bytes written.
-        int64_t montauk::getrandom(void* buf, uint32_t len);
-
-POWER MANAGEMENT
-SYS_RESET (26)
-    Reboot the system.
-        [[noreturn]] void montauk::reset();
-
-SYS_SHUTDOWN (27)
-    Shut down the system.
-        [[noreturn]] void montauk::shutdown();
-
-SYS_SUSPEND (89)
-    Enter ACPI S3 sleep. Returns after wake, 0 on success.
-        int montauk::suspend();
-
-SYS_POWER_REQUEST (135)
-    Cross-process graceful power-off request channel. The desktop
-    posts a pending action (POWER_REQ_SHUTDOWN / POWER_REQ_REBOOT)
-    then exits; login.elf reads it with POWER_REQ_QUERY
-    (read-and-clear), runs the shutdown stages, and finally calls
-    shutdown()/reset(). See montauk::abi::PowerRequestAction.
-        int montauk::power_request(int action);
-
-SYS_POWERINFO (149)
-    Get the CPU power/thermal snapshot (HWP state, throttling,
-    package temperature, base/max/effective frequency). Returns 0
-    on success, -1 if unsupported by the running hardware.
-        int montauk::syscall1(SYS_POWERINFO, (uint64_t)&out);
-        // out: montauk::abi::PowerInfo*
-
-KERNEL LOG
-SYS_LOG (46)
-    Read from the kernel ring log buffer.
-        int64_t montauk::read_log(char* buf, uint64_t size);
-
-I/O REDIRECTION
-    Used by the terminal app and similar programs to run a child
-    process with its console I/O captured instead of going directly
-    to the framebuffer console.
-
-SYS_SPAWN_REDIR (49)
-    Spawn a process with its console I/O redirected to the caller.
-        int montauk::spawn_redir(const char* path, const char* args = nullptr);
-
-SYS_CHILDIO_READ (50)
-    Read buffered output produced by a redirected child.
-        int montauk::childio_read(int childPid, char* buf, int maxLen);
-
-SYS_CHILDIO_WRITE (51)
-    Write text input to a redirected child's stdin.
-        int montauk::childio_write(int childPid, const char* data, int len);
-
-SYS_CHILDIO_WRITEKEY (52)
-    Forward a raw key event to a redirected child.
-        int montauk::childio_writekey(int childPid, const montauk::abi::KeyEvent* key);
-
-SYS_CHILDIO_SETTERMSZ (53)
-    Tell a redirected child its terminal dimensions changed.
-        int montauk::childio_settermsz(int childPid, int cols, int rows);
-
-WINDOW SERVER
-    Window server syscalls are used by GUI programs to create and
-    drive an on-screen window (see montauk/Window.hpp for the
-    higher-level win_create/win_poll/win_present wrappers built on
-    top of these).
-
-SYS_WINCREATE (54)
-    Create a window and get its pixel buffer.
-        int montauk::win_create(const char* title, int w, int h,
-                               montauk::abi::WinCreateResult* result);
-
-SYS_WINDESTROY (55)
-    Destroy a window.
-        int montauk::win_destroy(int id);
-
-SYS_WINPRESENT (56)
-    Flush the pixel buffer to the screen.
-        uint64_t montauk::win_present(int id);
-
-SYS_WINPOLL (57)
-    Poll the next event (key, mouse, resize, close, scale) for a
-    window.
-        int montauk::win_poll(int id, montauk::abi::WinEvent* event);
-
-SYS_WINENUM (58)
-    Enumerate all windows currently managed by the window server.
-        int montauk::win_enumerate(montauk::abi::WinInfo* info, int max);
-
-SYS_WINMAP (59)
-    Map (or re-map) a window's pixel buffer into the caller's
-    address space.
-        uint64_t montauk::win_map(int id);
-
-SYS_WINUNMAP (97)
-    Unmap a window's pixel buffer from the caller's address space.
-        int montauk::win_unmap(int id);
-
-SYS_WINSENDEVENT (60)
-    Inject an event into a window's event queue.
-        int montauk::win_sendevent(int id, const montauk::abi::WinEvent* event);
-
-SYS_WINRESIZE (64)
-    Resize a window and its pixel buffer.
-        uint64_t montauk::win_resize(int id, int w, int h);
-
-SYS_WINSETSCALE (65)
-    Set the desktop-wide UI scale factor.
-        int montauk::win_setscale(int scale);
-
-SYS_WINGETSCALE (66)
-    Get the desktop-wide UI scale factor.
-        int montauk::win_getscale();
-
-SYS_WINSETCURSOR (68)
-    Set the mouse cursor shown while over a window (0=arrow,
-    1=resize_h, 2=resize_v).
-        int montauk::win_setcursor(int id, int cursor);
-
-SYS_WINSETFLAGS (126)
-    Set window flags (e.g. WIN_FLAG_FULLSCREEN).
-        int montauk::win_setflags(int id, uint32_t flags);
-
-DEVICES
-SYS_DEVLIST (63)
-    Enumerate detected devices (CPU, interrupts, timers, input,
-    USB, network, display, storage, PCI, audio, ACPI) for the
-    device explorer app.
-        int montauk::devlist(montauk::abi::DevInfo* buf, int max);
-
-SYS_DISKINFO (69)
-    Get detailed info for one block device (model, serial, sector
-    size, NCQ/TRIM/SMART support, etc.).
-        int montauk::diskinfo(montauk::abi::DiskInfo* buf, int port);
-
-STORAGE
-SYS_PARTLIST (70)
-    Enumerate GPT partitions across all block devices.
-        int montauk::partlist(montauk::abi::PartInfo* buf, int max);
-
-SYS_DISKREAD (71)
-    Raw, driver-agnostic sector read from a block device.
-        int64_t montauk::disk_read(int blockDev, uint64_t lba,
-                                  uint32_t sectorCount, void* buf);
-
-SYS_DISKWRITE (72)
-    Raw, driver-agnostic sector write to a block device.
-        int64_t montauk::disk_write(int blockDev, uint64_t lba,
-                                   uint32_t sectorCount, const void* buf);
-
-SYS_GPTINIT (73)
-    Initialize a fresh GPT partition table on a block device.
-        int montauk::gpt_init(int blockDev);
-
-SYS_GPTADD (74)
-    Add a partition to an existing GPT table.
-        int montauk::gpt_add(const montauk::abi::GptAddParams* params);
-
-SYS_FSMOUNT (75)
-    Mount a partition's filesystem onto a drive number.
-        int montauk::fs_mount(int partIndex, int driveNum);
-
-SYS_FSFORMAT (76)
-    Format a partition with a filesystem (FS_TYPE_FAT32 or
-    FS_TYPE_EXT2).
-        int montauk::fs_format(const montauk::abi::FsFormatParams* params);
-
-SYS_FS_SYNC (134)
-    Flush all block-device write caches and cleanly unmount
-    disk-backed volumes ahead of power-off. Returns the number of
-    volumes unmounted. Part of the graceful shutdown sequence
-    (see SYS_POWER_REQUEST).
-        int montauk::fs_sync();
-
-AUDIO
-SYS_AUDIOOPEN (80)
-    Open a mixer output stream at the given sample rate, channel
-    count, and bit depth. Returns a stream handle.
-        int montauk::audio_open(uint32_t sampleRate, uint8_t channels,
-                               uint8_t bitsPerSample);
-
-SYS_AUDIOCLOSE (81)
-    Close an audio stream.
-        void montauk::audio_close(int handle);
-
-SYS_AUDIOWRITE (82)
-    Write PCM samples to an audio stream.
-        int montauk::audio_write(int handle, const void* data, uint32_t size);
-
-SYS_AUDIOCTL (83)
-    Control an audio stream or the global mixer. Commands 0-3 act
-    on the stream named by the handle argument; commands 4-12 act
-    on that stream's routing/mute state or the global master and
-    ignore or reuse the handle as documented below.
-        int montauk::audio_ctl(int handle, int cmd, int value);
-
-    Convenience wrappers (all thin calls onto audio_ctl):
-        audio_set_volume, audio_get_volume     AUDIO_CTL_{SET,GET}_VOLUME (0/1)
-        audio_get_pos                          AUDIO_CTL_GET_POS (2)
-        audio_pause, audio_resume              AUDIO_CTL_PAUSE (3)
-        audio_get_output                       AUDIO_CTL_GET_OUTPUT (4): 0=HDA, 1=Bluetooth
-        audio_set_output                       AUDIO_CTL_SET_OUTPUT (5): switch all streams
-        (SET_OUTPUT, 5)                        switch a stream's output route
-        audio_bt_status                        AUDIO_CTL_BT_STATUS (6)
-        audio_set_master_volume, _get_          AUDIO_CTL_{SET,GET}_MASTER_VOLUME (7/8), 0-100
-        audio_set_mute, audio_get_mute         AUDIO_CTL_{SET,GET}_MUTE (9/10), per-stream
-        audio_set_master_mute, _get_           AUDIO_CTL_{SET,GET}_MASTER_MUTE (11/12)
-
-SYS_AUDIOLIST (128)
-    Enumerate active mixer streams (owner PID, name, format,
-    volume, mute/pause state).
-        int montauk::audio_list(montauk::abi::AudioStreamInfo* buf, int maxCount);
-
-SYS_AUDIOWAIT (129)
-    Return the current mixer state serial. With timeoutMs > 0,
-    blocks until the serial differs from prevSerial or the timeout
-    elapses; with timeoutMs == 0 it returns immediately.
-        uint64_t montauk::audio_wait(uint64_t prevSerial, uint64_t timeoutMs);
-
-BLUETOOTH
-SYS_BTSCAN (84)
-    Scan for discoverable Bluetooth devices for up to timeoutMs.
-        int montauk::bt_scan(montauk::abi::BtScanResult* buf, int maxCount,
-                            uint32_t timeoutMs);
-
-SYS_BTCONNECT (85)
-    Connect (and pair/bond if needed) to a device by BD_ADDR.
-        int montauk::bt_connect(const uint8_t* bdAddr);
-
-SYS_BTDISCONNECT (86)
-    Disconnect from a device by BD_ADDR.
-        int montauk::bt_disconnect(const uint8_t* bdAddr);
-
-SYS_BTLIST (87)
-    List currently connected devices.
-        int montauk::bt_list(montauk::abi::BtDevInfo* buf, int maxCount);
-
-SYS_BTINFO (88)
-    Get local adapter info (BD_ADDR, name, init/scanning state).
-        int montauk::bt_info(montauk::abi::BtAdapterInfo* buf);
-
-SYS_BTSETADDR (137)
-    Change the adapter's BD_ADDR (6-byte buffer, byte 0 is the
-    least-significant octet). Volatile -- apply after the last
-    controller reset and persist separately to bluetooth.toml.
-        int montauk::bt_set_addr(const uint8_t* bdAddr);
-
-SYS_BTBONDS (138)
-    List bonded (paired) devices.
-        int montauk::bt_bonds(montauk::abi::BtBondInfo* buf, int maxCount);
-
-SYS_BTFORGET (139)
-    Forget a paired device; it must re-pair next time.
-        int montauk::bt_forget(const uint8_t* bdAddr);
-
-SOFTWARE-DEFINED RADIO
-    Receive-only SDR API. Receivers are enumerated by index in
-    [0, SYS_SDR_COUNT); SYS_SDR_OPEN returns a handle used by the
-    rest of the calls. Samples are delivered as interleaved 8-bit
-    unsigned I/Q (CU8, SDR_FORMAT_CU8) from the device's ring
-    buffer. Backed by an RTL-SDR (RTL2832U + R820T2) driver.
-
-SYS_SDR_COUNT (140)
-    Number of available SDR receivers.
-        int montauk::sdr_count();
-
-SYS_SDR_INFO (141)
-    Get static/dynamic info for one receiver by index (name, tuner,
-    frequency/sample-rate ranges, gain steps, present/streaming
-    flags).
-        int montauk::sdr_info(int index, montauk::abi::SdrDeviceInfo* out);
-
-SYS_SDR_OPEN (142)
-    Open a receiver by index. Returns a handle.
-        int montauk::sdr_open(int index);
-
-SYS_SDR_CLOSE (143)
-    Close a receiver handle.
-        int montauk::sdr_close(int handle);
-
-SYS_SDR_START (144)
-    Begin streaming samples.
-        int montauk::sdr_start(int handle);
-
-SYS_SDR_STOP (145)
-    Stop streaming samples.
-        int montauk::sdr_stop(int handle);
-
-SYS_SDR_READ (146)
-    Non-blocking read of queued I/Q samples. Returns bytes copied.
-        int montauk::sdr_read(int handle, void* buf, uint32_t len);
-
-SYS_SDR_SETPARAM (147)
-    Set a tunable parameter (see SDR_PARAM_* below).
-        int montauk::sdr_set_param(int handle, int param, uint64_t value);
-
-SYS_SDR_GETPARAM (148)
-    Get a tunable parameter's current value.
-        int64_t montauk::sdr_get_param(int handle, int param);
-
-    Parameters (montauk::abi::SDR_PARAM_*): FREQ (center frequency,
-    Hz), SAMPLE_RATE (Hz), GAIN_MODE (0=auto/AGC, 1=manual), GAIN
-    (tenths of dB), FREQ_CORR (ppm), AGC (demod digital AGC, 0/1),
-    DIRECT_SAMP (0=off, 1=I, 2=Q). Convenience wrappers exist for
-    each: sdr_set_freq/sdr_get_freq, sdr_set_sample_rate/
-    sdr_get_sample_rate, sdr_set_gain_mode, sdr_set_gain,
-    sdr_set_freq_correction, sdr_set_agc.
-
-CLIPBOARD
-SYS_CLIPBOARD_SET_TEXT (119)
-    Set the system clipboard's text contents (max
-    CLIPBOARD_MAX_TEXT_BYTES, 256 KiB).
-        int montauk::clipboard_set_text(const char* data, uint32_t len);
-
-SYS_CLIPBOARD_GET_INFO (120)
-    Get the clipboard's current size and serial number (for
-    change detection).
-        int montauk::clipboard_get_info(montauk::abi::ClipboardInfo* out);
-
-SYS_CLIPBOARD_GET_TEXT (121)
-    Read the clipboard's text contents.
-        int montauk::clipboard_get_text(char* buf, uint32_t bufLen,
-                                       uint32_t* outLen, uint64_t* outSerial = nullptr);
-
-SYS_CLIPBOARD_CLEAR (122)
-    Clear the clipboard.
-        int montauk::clipboard_clear();
-
-GENERIC IPC
-    Handle-based IPC primitives underlying streams, mailboxes,
-    waitsets, and shared-memory surfaces (see kernel/src/Ipc/Ipc.hpp).
-    All are accessed via numeric handles with rights-based security
-    and can be waited on with SYS_WAIT_HANDLE or a waitset.
-
-SYS_DUPHANDLE (98)
-    Duplicate a handle (e.g. to hand a copy to a child process).
-        int montauk::dup_handle(int handle);
-
-SYS_WAIT_HANDLE (99)
-    Block until a handle's signals intersect wantedSignals, or
-    timeoutMs elapses. See IPC_SIGNAL_* (READABLE, WRITABLE,
-    PEER_CLOSED, EXITED, READY).
-        uint32_t montauk::wait_handle(int handle, uint32_t wantedSignals,
-                                     uint64_t timeoutMs = ~0ULL);
-
-SYS_STREAM_CREATE (100)
-    Create a byte-pipe stream, returning a read handle and a write
-    handle.
-        int montauk::stream_create(int* outReadHandle, int* outWriteHandle,
-                                  uint32_t capacity = 0);
-
-SYS_STREAM_READ (101)
-    Read bytes from a stream handle.
-        int montauk::stream_read(int handle, void* buf, int maxLen);
-
-SYS_STREAM_WRITE (102)
-    Write bytes to a stream handle.
-        int montauk::stream_write(int handle, const void* data, int len);
-
-SYS_MAILBOX_CREATE (103)
-    Create a message-queue mailbox, returning a send handle and a
-    receive handle.
-        int montauk::mailbox_create(int* outSendHandle, int* outRecvHandle);
-
-SYS_MAILBOX_SEND (104)
-    Send a typed message, optionally attaching a handle to
-    transfer to the receiver.
-        int montauk::mailbox_send(int handle, uint32_t msgType, const void* data,
-                                 uint16_t len, int attachHandle = -1);
-
-SYS_MAILBOX_RECV (105)
-    Receive a message.
-        int montauk::mailbox_recv(int handle, uint32_t* outMsgType, void* data,
-                                 uint16_t* inOutLen, int* outAttachHandle = nullptr);
-
-SYS_WAITSET_CREATE (106)
-    Create a waitset for multiplexing waits across many handles.
-        int montauk::waitset_create();
-
-SYS_WAITSET_ADD (107)
-    Add a handle and its signal mask to a waitset.
-        int montauk::waitset_add(int waitsetHandle, int targetHandle,
-                                uint32_t signals);
-
-SYS_WAITSET_REMOVE (108)
-    Remove an entry from a waitset by index.
-        int montauk::waitset_remove(int waitsetHandle, int index);
-
-SYS_WAITSET_WAIT (109)
-    Block until any member handle's watched signals fire, or
-    timeoutMs elapses.
-        int montauk::waitset_wait(int waitsetHandle, montauk::abi::IpcWaitResult* outReady,
-                                 uint64_t timeoutMs = ~0ULL);
-
-SYS_PROC_OPEN (110)
-    Open a handle to another process by PID (for waiting on its
-    exit via IPC_SIGNAL_EXITED, etc.).
-        int montauk::proc_open(int pid);
-
-SYS_SURFACE_CREATE (111)
-    Create a shared pixel-buffer surface of byteSize bytes.
-        int montauk::surface_create(uint64_t byteSize);
-
-SYS_SURFACE_MAP (112)
-    Map a surface into the caller's address space.
-        void* montauk::surface_map(int handle);
-
-SYS_SURFACE_RESIZE (113)
-    Resize a surface.
-        int montauk::surface_resize(int handle, uint64_t newSize);
-
-SHARED LIBRARIES
-SYS_LOAD_LIB (114)
-    Load a shared library ELF (.lib) into the caller's address
-    space.
-        int montauk::load_lib(const char* path);
-
-SYS_UNLOAD_LIB (115)
-    Unload a previously loaded library.
-        int montauk::unload_lib(int handle);
-
-SYS_DLSYM (116)
-    Resolve a symbol offset within a loaded library to a callable
-    address.
-        void* montauk::dlsym(int handle, uint64_t symbolOffset);
-
-SYS_GETLIBBASE (117)
-    Get the base virtual address a loaded library was mapped at.
-        uint64_t montauk::get_libbase(int handle);
-
-CRASH REPORTING
-SYS_CRASH_REPORT (118)
-    Retrieve the kernel-filled crash report for the last faulting
-    process (exception vector/name, faulting address, register
-    state, page-fault error bits). Used by the crashpad app.
-        int montauk::crash_report(montauk::abi::CrashReportInfo* out);
-
-SEE ALSO
-    spawn(2), file(2), framebuffer(2), malloc(3), intro(1)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/tls-errors.html b/montaukos.org/docs/man/tls-errors.html deleted file mode 100644 index 1e78c1b..0000000 --- a/montaukos.org/docs/man/tls-errors.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - - tls-errors(5) - MontaukOS Manual - - - - - - - - - -
-
-

tls-errors(5)

-
- -
- -
NAME
-    tls-errors - BearSSL TLS and X.509 error codes
-
-DESCRIPTION
-    MontaukOS uses BearSSL for TLS 1.2 connections. When a TLS
-    operation fails, an integer error code is reported. This page
-    lists all possible error codes.
-
-SSL/TLS ENGINE ERRORS
-
-0  BR_ERR_OK
-    No error.
-
-1  BR_ERR_BAD_PARAM
-    Caller-provided parameter is incorrect.
-
-2  BR_ERR_BAD_STATE
-    Operation cannot be applied in the current engine state.
-
-3  BR_ERR_UNSUPPORTED_VERSION
-    Incoming protocol or record version is unsupported.
-
-4  BR_ERR_BAD_VERSION
-    Incoming record version does not match the expected version.
-
-5  BR_ERR_BAD_LENGTH
-    Incoming record length is invalid.
-
-6  BR_ERR_TOO_LARGE
-    Incoming record is too large, or buffer is too small for the
-    handshake message to send.
-
-7  BR_ERR_BAD_MAC
-    Decryption found invalid padding, or the record MAC is
-    not correct.
-
-8  BR_ERR_NO_RANDOM
-    No initial entropy was provided and none could be obtained
-    from the OS.
-
-9  BR_ERR_UNKNOWN_TYPE
-    Incoming record type is unknown.
-
-10 BR_ERR_UNEXPECTED
-    Incoming record or message has wrong type for the current
-    engine state.
-
-12 BR_ERR_BAD_CCS
-    ChangeCipherSpec message from the peer has invalid contents.
-
-13 BR_ERR_BAD_ALERT
-    Alert message from the peer has invalid contents (odd length).
-
-14 BR_ERR_BAD_HANDSHAKE
-    Incoming handshake message decoding failed.
-
-15 BR_ERR_OVERSIZED_ID
-    ServerHello contains a session ID larger than 32 bytes.
-
-16 BR_ERR_BAD_CIPHER_SUITE
-    Server wants to use a cipher suite that we did not advertise,
-    or we tried to advertise a cipher suite that we do not support.
-
-17 BR_ERR_BAD_COMPRESSION
-    Server wants to use a compression method that we did not
-    advertise.
-
-18 BR_ERR_BAD_FRAGLEN
-    Server's max fragment length does not match client's.
-
-19 BR_ERR_BAD_SECRENEG
-    Secure renegotiation failed.
-
-20 BR_ERR_EXTRA_EXTENSION
-    Server sent an extension type that we did not announce, or
-    used the same extension type more than once in ServerHello.
-
-21 BR_ERR_BAD_SNI
-    Invalid Server Name Indication contents (when used by the
-    server, this extension shall be empty).
-
-22 BR_ERR_BAD_HELLO_DONE
-    Invalid ServerHelloDone from the server (length is not 0).
-
-23 BR_ERR_LIMIT_EXCEEDED
-    Internal limit exceeded (e.g. server's public key is too
-    large).
-
-24 BR_ERR_BAD_FINISHED
-    Finished message from peer does not match the expected value.
-
-25 BR_ERR_RESUME_MISMATCH
-    Session resumption attempted with a different version or
-    cipher suite.
-
-26 BR_ERR_INVALID_ALGORITHM
-    Unsupported or invalid algorithm (ECDHE curve, signature
-    algorithm, hash function).
-
-27 BR_ERR_BAD_SIGNATURE
-    Invalid signature on ServerKeyExchange or CertificateVerify.
-
-28 BR_ERR_WRONG_KEY_USAGE
-    Peer's public key does not have the proper type or is not
-    allowed for the requested operation.
-
-29 BR_ERR_NO_CLIENT_AUTH
-    Client did not send a certificate upon request, or the client
-    certificate could not be validated.
-
-31 BR_ERR_IO
-    I/O error or premature close on the underlying transport.
-
-X.509 CERTIFICATE ERRORS
-
-32 BR_ERR_X509_OK
-    X.509 validation was successful (not an error).
-
-33 BR_ERR_X509_INVALID_VALUE
-    Invalid value in an ASN.1 structure.
-
-34 BR_ERR_X509_TRUNCATED
-    Truncated certificate.
-
-35 BR_ERR_X509_EMPTY_CHAIN
-    Empty certificate chain (no certificate at all).
-
-36 BR_ERR_X509_INNER_TRUNC
-    Inner element extends beyond outer element size.
-
-37 BR_ERR_X509_BAD_TAG_CLASS
-    Unsupported tag class (application or private).
-
-38 BR_ERR_X509_BAD_TAG_VALUE
-    Unsupported tag value.
-
-39 BR_ERR_X509_INDEFINITE_LENGTH
-    Indefinite length encoding found.
-
-40 BR_ERR_X509_EXTRA_ELEMENT
-    Extraneous element in certificate.
-
-41 BR_ERR_X509_UNEXPECTED
-    Unexpected element in certificate.
-
-42 BR_ERR_X509_NOT_CONSTRUCTED
-    Expected constructed element, but found primitive.
-
-43 BR_ERR_X509_NOT_PRIMITIVE
-    Expected primitive element, but found constructed.
-
-44 BR_ERR_X509_PARTIAL_BYTE
-    BIT STRING length is not a multiple of 8.
-
-45 BR_ERR_X509_BAD_BOOLEAN
-    BOOLEAN value has invalid length.
-
-46 BR_ERR_X509_OVERFLOW
-    Value is off-limits (overflow).
-
-47 BR_ERR_X509_BAD_DN
-    Invalid distinguished name.
-
-48 BR_ERR_X509_BAD_TIME
-    Invalid date/time representation in certificate.
-
-49 BR_ERR_X509_UNSUPPORTED
-    Certificate contains unsupported features that cannot be
-    ignored.
-
-50 BR_ERR_X509_LIMIT_EXCEEDED
-    Key or signature size exceeds internal limits.
-
-51 BR_ERR_X509_WRONG_KEY_TYPE
-    Key type does not match that which was expected.
-
-52 BR_ERR_X509_BAD_SIGNATURE
-    Signature is invalid.
-
-53 BR_ERR_X509_TIME_UNKNOWN
-    Validation time is unknown (no time was set).
-
-54 BR_ERR_X509_EXPIRED
-    Certificate is expired or not yet valid.
-
-55 BR_ERR_X509_DN_MISMATCH
-    Issuer/subject DN mismatch in the chain.
-
-56 BR_ERR_X509_BAD_SERVER_NAME
-    Expected server name was not found in the chain.
-
-57 BR_ERR_X509_CRITICAL_EXTENSION
-    Unknown critical extension in certificate.
-
-58 BR_ERR_X509_NOT_CA
-    Not a CA, or path length constraint violation.
-
-59 BR_ERR_X509_FORBIDDEN_KEY_USAGE
-    Key Usage extension prohibits the intended usage.
-
-60 BR_ERR_X509_WEAK_PUBLIC_KEY
-    Public key found in certificate is too small.
-
-62 BR_ERR_X509_NOT_TRUSTED
-    Chain could not be linked to a trust anchor.
-
-FATAL ALERTS
-    When a fatal alert is received from the peer, the error code
-    is 256 + the TLS alert value. When a fatal alert is sent to
-    the peer, the error code is 512 + the TLS alert value.
-
-    Common alert values:
-        0   close_notify
-       10   unexpected_message
-       20   bad_record_mac
-       40   handshake_failure
-       42   bad_certificate
-       43   unsupported_certificate
-       44   certificate_revoked
-       45   certificate_expired
-       46   certificate_unknown
-       47   illegal_parameter
-       48   unknown_ca
-       50   decode_error
-       51   decrypt_error
-       70   protocol_version
-       71   insufficient_security
-       80   internal_error
-       86   unrecognized_name
-      112   no_application_protocol
-
-    For example, error 296 means a handshake_failure alert was
-    received (256 + 40 = 296).
-
-SEE ALSO
-    fetch(1), syscalls(2)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/man/wiki.html b/montaukos.org/docs/man/wiki.html deleted file mode 100644 index b169a6a..0000000 --- a/montaukos.org/docs/man/wiki.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - wiki(1) - MontaukOS Manual - - - - - - - - - -
-
-

wiki(1)

-
- -
- -
NAME
-    wiki - Wikipedia article viewer for MontaukOS
-
-SYNOPSIS
-    wiki <title>
-    wiki -f <title>
-    wiki -s <query>
-
-DESCRIPTION
-    wiki fetches and displays Wikipedia articles in the terminal.
-    It connects to en.wikipedia.org over HTTPS (TLS 1.2) and
-    uses the Wikipedia REST and Action APIs to retrieve article
-    content as plain text.
-
-    Articles are displayed in a fullscreen interactive pager with
-    color-coded headings and word-wrapped text. Multi-word titles
-    are accepted as separate arguments and joined automatically.
-
-OPTIONS
--f
-    Full article mode. Display the complete article text instead
-    of just the summary. Section headings are color-coded.
-
--s
-    Search mode. Search Wikipedia for articles matching the
-    query and display a numbered list of up to 10 results.
-    Press a number key to view that article's summary.
-
-EXAMPLES
-    wiki Linux
-        Show a summary of the Linux article.
-
-    wiki -f C programming language
-        Show the full text of the C programming language article.
-
-    wiki -s operating system
-        Search for articles related to "operating system".
-
-TLS SUPPORT
-    Connections use BearSSL for TLS 1.2. Server certificates
-    are validated against the system CA bundle at
-    0:/os/certs/ca-certificates.crt.
-
-KEYBOARD
-
-   Article pager
-    j / Down        Scroll down one line
-    k / Up          Scroll up one line
-    Space / PgDn    Scroll down one page
-    b / PgUp        Scroll up one page
-    g / Home        Jump to top
-    G / End         Jump to bottom
-    q               Quit pager
-
-   Search results
-    1-9, 0          View article (0 = result 10)
-    q               Quit search
-
-   General
-    Ctrl+Q          Abort during network request
-
-SEE ALSO
-    fetch(1), ping(1), nslookup(1), shell(1)
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/assets/files.png b/montaukos.org/docs/osdev/assets/files.png deleted file mode 100644 index 7bc3416..0000000 Binary files a/montaukos.org/docs/osdev/assets/files.png and /dev/null differ diff --git a/montaukos.org/docs/osdev/assets/files_apps_view.png b/montaukos.org/docs/osdev/assets/files_apps_view.png deleted file mode 100644 index baca4c6..0000000 Binary files a/montaukos.org/docs/osdev/assets/files_apps_view.png and /dev/null differ diff --git a/montaukos.org/docs/osdev/bootloader.html b/montaukos.org/docs/osdev/bootloader.html deleted file mode 100644 index 634a33a..0000000 --- a/montaukos.org/docs/osdev/bootloader.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Bootloader contract - MontaukOS - - - - - - - - - -
-
-

Bootloader contract

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/compositor.html b/montaukos.org/docs/osdev/compositor.html deleted file mode 100644 index fe36c88..0000000 --- a/montaukos.org/docs/osdev/compositor.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Compositor - MontaukOS - - - - - - - - - -
-
-

Compositor

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/desktop.html b/montaukos.org/docs/osdev/desktop.html deleted file mode 100644 index 29a4586..0000000 --- a/montaukos.org/docs/osdev/desktop.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - MontaukOS Desktop - MontaukOS - - - - - - - - - -
-
-

MontaukOS Desktop

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -

Pages

- - -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/files.html b/montaukos.org/docs/osdev/files.html deleted file mode 100644 index e23cc5b..0000000 --- a/montaukos.org/docs/osdev/files.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - Files app - MontaukOS - - - - - - - - - -
-
-

File Manager

-
- -
- -

Overview

-

-The Files app provides an interface that allows users of MontaukOS to: -

- - - -
-
-Files app displaying Computer view with user libraries, ramdisk volume, Settings, and Apps folder. -

Files app displaying Computer view with user libraries, ramdisk volume, Settings, and Apps folder.

-
- -
-

Technical notes

- - -
-
- -

Files virtual folders

- -

Apps folder

-
-Apps folder in the Files app displaying installed applications on a MontaukOS development build. -

Apps folder in the Files app displaying installed applications on a MontaukOS development build.

-
- -

Settings folder

-
-

This section is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
-
-

Copyright © 2026 Montauk Operating System Project. All rights reserved.

Page last revised 26 May 2026.

- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/hal.html b/montaukos.org/docs/osdev/hal.html deleted file mode 100644 index 8c07ed2..0000000 --- a/montaukos.org/docs/osdev/hal.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Hardware abstraction - MontaukOS - - - - - - - - - -
-
-

Hardware abstraction

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/index.html b/montaukos.org/docs/osdev/index.html deleted file mode 100644 index 60e7cf0..0000000 --- a/montaukos.org/docs/osdev/index.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - Operating System Development Manual - MontaukOS - - - - - - - - - -
-
-

Operating System Development Manual

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -

Kernel architecture

- - -

Userspace architecture

- - -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/init.html b/montaukos.org/docs/osdev/init.html deleted file mode 100644 index 95a1f7f..0000000 --- a/montaukos.org/docs/osdev/init.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Init system - MontaukOS - - - - - - - - - -
-
-

Init system

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/ipc.html b/montaukos.org/docs/osdev/ipc.html deleted file mode 100644 index 77ec057..0000000 --- a/montaukos.org/docs/osdev/ipc.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - IPC - MontaukOS - - - - - - - - - -
-
-

IPC

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/multiuser.html b/montaukos.org/docs/osdev/multiuser.html deleted file mode 100644 index 55804a1..0000000 --- a/montaukos.org/docs/osdev/multiuser.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Multi-user system - MontaukOS - - - - - - - - - -
-
-

Multi-user system

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/networking.html b/montaukos.org/docs/osdev/networking.html deleted file mode 100644 index 760b94c..0000000 --- a/montaukos.org/docs/osdev/networking.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Networking - MontaukOS - - - - - - - - - -
-
-

Networking

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/panel.html b/montaukos.org/docs/osdev/panel.html deleted file mode 100644 index d7ec8c8..0000000 --- a/montaukos.org/docs/osdev/panel.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Panel - MontaukOS - - - - - - - - - -
-
-

Panel

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/power.html b/montaukos.org/docs/osdev/power.html deleted file mode 100644 index 729f5b7..0000000 --- a/montaukos.org/docs/osdev/power.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Power management - MontaukOS - - - - - - - - - -
-
-

Power management

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/shell.html b/montaukos.org/docs/osdev/shell.html deleted file mode 100644 index f38c9b4..0000000 --- a/montaukos.org/docs/osdev/shell.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - MontaukOS Shell - MontaukOS - - - - - - - - - -
-
-

MontaukOS Shell

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/smp.html b/montaukos.org/docs/osdev/smp.html deleted file mode 100644 index dbaafe8..0000000 --- a/montaukos.org/docs/osdev/smp.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - SMP - MontaukOS - - - - - - - - - -
-
-

SMP

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/syscalls.html b/montaukos.org/docs/osdev/syscalls.html deleted file mode 100644 index 7c43990..0000000 --- a/montaukos.org/docs/osdev/syscalls.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - System calls - MontaukOS - - - - - - - - - -
-
-

System calls

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/vfs.html b/montaukos.org/docs/osdev/vfs.html deleted file mode 100644 index 9611aed..0000000 --- a/montaukos.org/docs/osdev/vfs.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Virtual File System (VFS) - MontaukOS - - - - - - - - - -
-
-

Virtual File System (VFS)

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/osdev/winserver.html b/montaukos.org/docs/osdev/winserver.html deleted file mode 100644 index b276ae5..0000000 --- a/montaukos.org/docs/osdev/winserver.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - Window Server - MontaukOS - - - - - - - - - -
-
-

Window Server

-
- -
- -
-

This page is a stub. It has been created as a placeholder while the -MontaukOS documentation is reorganised, and does not have any content yet.

-
- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/usersmanual/connectivity.html b/montaukos.org/docs/usersmanual/connectivity.html deleted file mode 100644 index f547a2c..0000000 --- a/montaukos.org/docs/usersmanual/connectivity.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - Connectivity - MontaukOS Tutorials - - - - - - - - - -
-
-

Connecting to a network (and to the Internet) on MontaukOS

-
- -
-

This tutorial explains how to connect to your local network on MontaukOS.

-

-

- MontaukOS includes drivers for Intel Ethernet adapters, including virtualized adapters found on QEMU and VirtualBox, and adapters used on a wide variety of desktops and laptops. Wireless networking via Wi-Fi is currently not supported.

- For most Ethernet configurations, MontaukOS should automatically connect to your local network and obtain an IP address via the DHCP protocol. You can review your network connection using the Network configuration applet: -

    -
  1. Open the applications menu and click on the 'Settings' entry.
  2. -
  3. Double-click the 'Network' applet from within the Settings virtual folder.
  4. -
-
- -

The Network applet displayed on a QEMU/KVM virtual machine (MontaukOS 0.1.5)

-
- If you need to manually configure your connection - such as by setting up a static IP - you can use the "Configure" tab. - Configuration options include the IP address, subnet mask, gateway IP, and DNS server. -
-

-
- - The 'DHCP' button on the toolbar invokes the DHCP client manually, in the background. MontaukOS otherwise runs the DHCP client automatically once every system startup.

- - If the Network applet reports that there is no network adapter present, it is very likely that MontaukOS does not have network drivers for your device. For further troubleshooting, you can use the Devices (devexplorer) app to review - devices detected by the system, or use the Kernel Log tool to inspect relevant kernel log lines. -

-
    - -

-
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/usersmanual/images/initialsetup.png b/montaukos.org/docs/usersmanual/images/initialsetup.png deleted file mode 100644 index 484b3a5..0000000 Binary files a/montaukos.org/docs/usersmanual/images/initialsetup.png and /dev/null differ diff --git a/montaukos.org/docs/usersmanual/images/networkapplet-configure.png b/montaukos.org/docs/usersmanual/images/networkapplet-configure.png deleted file mode 100644 index a5c33e2..0000000 Binary files a/montaukos.org/docs/usersmanual/images/networkapplet-configure.png and /dev/null differ diff --git a/montaukos.org/docs/usersmanual/images/networkapplet-overview.png b/montaukos.org/docs/usersmanual/images/networkapplet-overview.png deleted file mode 100644 index 90d1091..0000000 Binary files a/montaukos.org/docs/usersmanual/images/networkapplet-overview.png and /dev/null differ diff --git a/montaukos.org/docs/usersmanual/images/terminal-c.png b/montaukos.org/docs/usersmanual/images/terminal-c.png deleted file mode 100644 index 40b0ab3..0000000 Binary files a/montaukos.org/docs/usersmanual/images/terminal-c.png and /dev/null differ diff --git a/montaukos.org/docs/usersmanual/images/terminal-lua.png b/montaukos.org/docs/usersmanual/images/terminal-lua.png deleted file mode 100644 index 79e9387..0000000 Binary files a/montaukos.org/docs/usersmanual/images/terminal-lua.png and /dev/null differ diff --git a/montaukos.org/docs/usersmanual/images/texteditor-c.png b/montaukos.org/docs/usersmanual/images/texteditor-c.png deleted file mode 100644 index de007fa..0000000 Binary files a/montaukos.org/docs/usersmanual/images/texteditor-c.png and /dev/null differ diff --git a/montaukos.org/docs/usersmanual/images/texteditor-lua.png b/montaukos.org/docs/usersmanual/images/texteditor-lua.png deleted file mode 100644 index e48cfce..0000000 Binary files a/montaukos.org/docs/usersmanual/images/texteditor-lua.png and /dev/null differ diff --git a/montaukos.org/docs/usersmanual/images/timezone.png b/montaukos.org/docs/usersmanual/images/timezone.png deleted file mode 100644 index a082d8e..0000000 Binary files a/montaukos.org/docs/usersmanual/images/timezone.png and /dev/null differ diff --git a/montaukos.org/docs/usersmanual/index.html b/montaukos.org/docs/usersmanual/index.html deleted file mode 100644 index 2d23f3b..0000000 --- a/montaukos.org/docs/usersmanual/index.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - Tutorials - MontaukOS - - - - - - - - - -
-
-

User's Tutorials

-
- -
- -

-This volume contains tutorials for users covering everyday use of the MontaukOS system. -

- -

Getting started

- - -

Programming

- - -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/usersmanual/initialsetup.html b/montaukos.org/docs/usersmanual/initialsetup.html deleted file mode 100644 index 2e7f78d..0000000 --- a/montaukos.org/docs/usersmanual/initialsetup.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - Initial Setup - MontaukOS Tutorials - - - - - - - - - -
-
-

Initial Setup on MontaukOS

-
- -
-

This tutorial explains how to create your first account and set your time zone on MontaukOS.

-
-

-

Account creation and login

- When you successfully boot MontaukOS for the first time, you should see the 'MontaukOS Setup' window, as depicted below. - -


- -
    -
  1. It is recommended to select a new username for your account rather than keeping the default username 'admin'.
  2. -
  3. Select a display name for your account.
  4. -
  5. Choose a password for your account, and enter it in both the 'Password' and 'Confirm Password' fields.
  6. -
  7. Click 'Create Account'.
  8. -
  9. First-time setup is complete. Keep the 'Desktop' session selected and use the credentials you just created to log in to the system.
  10. -
- -

Time zone selection

-
    -
  1. Click on the application menu icon located at the top-left corner of the desktop, and click the 'Settings' entry.
  2. -
  3. Double-click the 'Time' icon within the virtual 'Settings' folder, then open the Time Zones tab.
  4. -
  5. The default time zone is Oslo, Norway. To adjust your time zone, scroll along the left pane (countries) and select your country or region. Then, select the city closest to your location on the right pane.
  6. -
  7. Click 'Apply'.
  8. -
-
- -
-

-
    - -

-
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/usersmanual/tutorial-programming-c.html b/montaukos.org/docs/usersmanual/tutorial-programming-c.html deleted file mode 100644 index 36ce2eb..0000000 --- a/montaukos.org/docs/usersmanual/tutorial-programming-c.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - C Hello World - MontaukOS Tutorials - - - - - - - - - -
-
-

Writing and running a "Hello, World" program in C

-
- -
-

This tutorial explains how to create and run a simple program in the C programming language (using the tcc C compiler) on MontaukOS.

-
    -
  1. Open the Text Editor by navigating to the 'Applications' section in the app menu.
  2. -
    Did you know? The MontaukOS Text Editor provides syntax highlighting for C and Lua files.
    -
  3. Type: -
    -#include <stdio.h>
    -
    -int main(void) {
    -    printf("Hello, World!\n");
    -    return 0;
    -}
    -    
    - into the Text Editor window. This code outputs the string "Hello, World!" along with a line break to the Terminal.

  4. -
    - - -
    -
  5. Click the Save (floppy disk) button on the top panel. Choose a directory to save your code in - for example, your Home folder - give the source file a name ending in .c, and click 'Save'.
  6. -
  7. Open the Terminal app by navigating to the 'Applications' section in the app menu. You should see something like this appear on your screen: -
    -    MontaukOS
    -    Copyright (c) 2025-2026 Montauk Operating System Project
    -
    -    Logged in as admin
    -
    -    Type 'help' for available commands.
    -
    -0:/users/admin>
    -        
    -
    -
  8. -
  9. If you saved your program's source file somewhere other than your Home directory, switch to the directory in which you saved your program using the cd command. For example, cd Documents.
  10. -
  11. Type 'tcc ' followed by your program's name, and then press enter. For example, 'tcc hello.c'.
  12. -
  13. Run your program by typing its name without the '.c' extension, before pressing enter - for example, "hello".
  14. -
  15. You should see "Hello, World!" displayed in the Terminal window. Congratulations!
  16. -
    - -

-
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/docs/usersmanual/tutorial-programming.html b/montaukos.org/docs/usersmanual/tutorial-programming.html deleted file mode 100644 index 26deda0..0000000 --- a/montaukos.org/docs/usersmanual/tutorial-programming.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - Lua Hello World - MontaukOS Tutorials - - - - - - - - - -
-
-

Writing and running a "Hello, World" program in Lua

-
- -
-

This tutorial explains how to create and run a simple program in the Lua programming language on MontaukOS.

-
    -
  1. Open the Text Editor by navigating to the 'Applications' section in the app menu.
  2. -
    Did you know? The MontaukOS Text Editor provides syntax highlighting for C and Lua files.
    -
  3. Type: -
    print("Hello, World!")
    - into the Text Editor window. This code outputs the string "Hello, World!" to the Terminal.

  4. -
    - - -
    -
  5. Click the Save (floppy disk) button on the top panel. Choose a directory to save your code in - for example, your Home folder - give the program a name ending in .lua, and click 'Save'.
  6. -
  7. Open the Terminal app by navigating to the 'Applications' section in the app menu. You should see something like this appear on your screen: -
    -    MontaukOS
    -    Copyright (c) 2025-2026 Montauk Operating System Project
    -
    -    Logged in as admin
    -
    -    Type 'help' for available commands.
    -
    -0:/users/admin>
    -        
    -
    -
  8. -
  9. If you saved your program somewhere other than your Home directory, switch to the directory in which you saved your program using the cd command. For example, cd Documents.
  10. -
  11. Type 'lua ' followed by your program's name, and then press enter. For example, 'lua hello.lua'.
  12. -
  13. You should see "Hello, World!" displayed in the Terminal window. Congratulations!
  14. -
    - -
-
-

Beware!

-

The Lua implementation on MontaukOS currently has known issues. For example, floating point calculations do not work.

- -
- -
-Back to Documentation Index -
- -
- - diff --git a/montaukos.org/downloads.html b/montaukos.org/downloads.html deleted file mode 100644 index 5be1c80..0000000 --- a/montaukos.org/downloads.html +++ /dev/null @@ -1,625 +0,0 @@ - - - - - - - Downloads - MontaukOS - - - - - - - - - -
-
-

Downloads

-
- -
- -

Latest Release

-
-

MontaukOS 0.1.9

-

August 13, 2026

-

It is recommended that users run MontaukOS in a virtual machine rather than on real hardware.

-

Links

- -
- For questions or comments, please mail to daniel@montaukos.org. -
-

New

- -

Fixed

- -

Known issues

- -

Included in ISO

-

Two x86_64 images are published for this release. montauk-0.1.9-sdk-x86_64.iso additionally carries the Montauk SDK (gcc, binutils, etc.)

- -
- -

Release Archive

-
-

MontaukOS 0.1.8

-

July 18, 2026

-

It is recommended that users run MontaukOS in a virtual machine rather than on real hardware.

-

Links

- -
- For questions or comments, please mail to daniel@montaukos.org. -
-

New

- -

Fixed

- -

Known issues

- -

Included in ISO

- -
- -
-

MontaukOS 0.1.7

-

July 9, 2026

-

New

- -

Fixed

- -

Included in ISO

- -
- -
-

MontaukOS 0.1.6

-

July 8, 2026 - hotfix

-

Fixed

- -

Included in ISO

- -
- -
-

MontaukOS 0.1.5

-

July 8, 2026

-

It is recommended that users run MontaukOS in a virtual machine rather than on real hardware.

-

New

- -

Fixed

- -

Licensing

- -

Included in ISO

- -
- -
-

MontaukOS 0.1.4

-

June 21, 2026

-

New

- -

Fixed

- -

Included in ISO

- -
- -
-

MontaukOS 0.1.3

-

June 7, 2026

-

New

- -

Fixed

- -

Included in ISO

- -
- -
-

MontaukOS 0.1.2

-

May 2, 2026

-

New

- -

Included in ISO

- -
- -
-

MontaukOS 0.1.1

-

New

- -

Included in ISO

- -
- -
-

MontaukOS 0.1.0

-

(first release)

-

Included in ISO

- -
- -
- -
-Back to Home -
- -
- - diff --git a/montaukos.org/fr_icons/accessories-calculator-symbolic.svg b/montaukos.org/fr_icons/accessories-calculator-symbolic.svg deleted file mode 100644 index 063765e..0000000 --- a/montaukos.org/fr_icons/accessories-calculator-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/accessories-calculator.svg b/montaukos.org/fr_icons/accessories-calculator.svg deleted file mode 100644 index 80a0ff6..0000000 --- a/montaukos.org/fr_icons/accessories-calculator.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/accessories-text-editor-symbolic.svg b/montaukos.org/fr_icons/accessories-text-editor-symbolic.svg deleted file mode 100644 index d63556e..0000000 --- a/montaukos.org/fr_icons/accessories-text-editor-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/accessories-text-editor.svg b/montaukos.org/fr_icons/accessories-text-editor.svg deleted file mode 100644 index 95697eb..0000000 --- a/montaukos.org/fr_icons/accessories-text-editor.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/application-pdf.svg b/montaukos.org/fr_icons/application-pdf.svg deleted file mode 100644 index d8b8af8..0000000 --- a/montaukos.org/fr_icons/application-pdf.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/application-x-executable-symbolic.svg b/montaukos.org/fr_icons/application-x-executable-symbolic.svg deleted file mode 100644 index 40d3ef0..0000000 --- a/montaukos.org/fr_icons/application-x-executable-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/application-x-executable.svg b/montaukos.org/fr_icons/application-x-executable.svg deleted file mode 100644 index ed117ed..0000000 --- a/montaukos.org/fr_icons/application-x-executable.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/applications-science.svg b/montaukos.org/fr_icons/applications-science.svg deleted file mode 100644 index 4cbeac8..0000000 --- a/montaukos.org/fr_icons/applications-science.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/audio-player.svg b/montaukos.org/fr_icons/audio-player.svg deleted file mode 100644 index bbf1275..0000000 --- a/montaukos.org/fr_icons/audio-player.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/audio-volume-high-symbolic.svg b/montaukos.org/fr_icons/audio-volume-high-symbolic.svg deleted file mode 100644 index d115c2f..0000000 --- a/montaukos.org/fr_icons/audio-volume-high-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/bluetooth.svg b/montaukos.org/fr_icons/bluetooth.svg deleted file mode 100644 index 4b4c938..0000000 --- a/montaukos.org/fr_icons/bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/code.svg b/montaukos.org/fr_icons/code.svg deleted file mode 100644 index 3ae13c7..0000000 --- a/montaukos.org/fr_icons/code.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/com.visualstudio.code.oss.svg b/montaukos.org/fr_icons/com.visualstudio.code.oss.svg deleted file mode 100644 index 3ae13c7..0000000 --- a/montaukos.org/fr_icons/com.visualstudio.code.oss.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/computer-symbolic.svg b/montaukos.org/fr_icons/computer-symbolic.svg deleted file mode 100644 index 4d8fcb9..0000000 --- a/montaukos.org/fr_icons/computer-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/computer.svg b/montaukos.org/fr_icons/computer.svg deleted file mode 100644 index 97ce100..0000000 --- a/montaukos.org/fr_icons/computer.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/dialog-information-symbolic.svg b/montaukos.org/fr_icons/dialog-information-symbolic.svg deleted file mode 100644 index 80872b4..0000000 --- a/montaukos.org/fr_icons/dialog-information-symbolic.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/document-export-symbolic.svg b/montaukos.org/fr_icons/document-export-symbolic.svg deleted file mode 100644 index 0ab4ddf..0000000 --- a/montaukos.org/fr_icons/document-export-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/document-save-symbolic.svg b/montaukos.org/fr_icons/document-save-symbolic.svg deleted file mode 100644 index c71e843..0000000 --- a/montaukos.org/fr_icons/document-save-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/document-viewer.svg b/montaukos.org/fr_icons/document-viewer.svg deleted file mode 100644 index afe466c..0000000 --- a/montaukos.org/fr_icons/document-viewer.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/doom.svg b/montaukos.org/fr_icons/doom.svg deleted file mode 100644 index 5975a8c..0000000 --- a/montaukos.org/fr_icons/doom.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/drive-harddisk.svg b/montaukos.org/fr_icons/drive-harddisk.svg deleted file mode 100644 index 01e2b87..0000000 --- a/montaukos.org/fr_icons/drive-harddisk.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/edit-copy.svg b/montaukos.org/fr_icons/edit-copy.svg deleted file mode 100644 index 43e5873..0000000 --- a/montaukos.org/fr_icons/edit-copy.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/edit-cut.svg b/montaukos.org/fr_icons/edit-cut.svg deleted file mode 100644 index 077e642..0000000 --- a/montaukos.org/fr_icons/edit-cut.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/edit-paste.svg b/montaukos.org/fr_icons/edit-paste.svg deleted file mode 100644 index f992fcc..0000000 --- a/montaukos.org/fr_icons/edit-paste.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/edit-redo-symbolic.svg b/montaukos.org/fr_icons/edit-redo-symbolic.svg deleted file mode 100644 index 2309291..0000000 --- a/montaukos.org/fr_icons/edit-redo-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/edit-rename.svg b/montaukos.org/fr_icons/edit-rename.svg deleted file mode 100644 index 303cf28..0000000 --- a/montaukos.org/fr_icons/edit-rename.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/edit-undo-symbolic.svg b/montaukos.org/fr_icons/edit-undo-symbolic.svg deleted file mode 100644 index 39731c4..0000000 --- a/montaukos.org/fr_icons/edit-undo-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/folder-blue-desktop.svg b/montaukos.org/fr_icons/folder-blue-desktop.svg deleted file mode 100644 index 6affc2f..0000000 --- a/montaukos.org/fr_icons/folder-blue-desktop.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/folder-blue-development.svg b/montaukos.org/fr_icons/folder-blue-development.svg deleted file mode 100644 index 74e2973..0000000 --- a/montaukos.org/fr_icons/folder-blue-development.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/folder-blue-documents.svg b/montaukos.org/fr_icons/folder-blue-documents.svg deleted file mode 100644 index c7a49b2..0000000 --- a/montaukos.org/fr_icons/folder-blue-documents.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/folder-blue-downloads.svg b/montaukos.org/fr_icons/folder-blue-downloads.svg deleted file mode 100644 index 67908fd..0000000 --- a/montaukos.org/fr_icons/folder-blue-downloads.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/folder-blue-home.svg b/montaukos.org/fr_icons/folder-blue-home.svg deleted file mode 100644 index 9c0414d..0000000 --- a/montaukos.org/fr_icons/folder-blue-home.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/folder-blue-music.svg b/montaukos.org/fr_icons/folder-blue-music.svg deleted file mode 100644 index 2c6d482..0000000 --- a/montaukos.org/fr_icons/folder-blue-music.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/folder-blue-pictures.svg b/montaukos.org/fr_icons/folder-blue-pictures.svg deleted file mode 100644 index 5f0ca26..0000000 --- a/montaukos.org/fr_icons/folder-blue-pictures.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/folder-blue-videos.svg b/montaukos.org/fr_icons/folder-blue-videos.svg deleted file mode 100644 index d9a04f6..0000000 --- a/montaukos.org/fr_icons/folder-blue-videos.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/folder-documents-symbolic.svg b/montaukos.org/fr_icons/folder-documents-symbolic.svg deleted file mode 100644 index f04740f..0000000 --- a/montaukos.org/fr_icons/folder-documents-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/folder-new.svg b/montaukos.org/fr_icons/folder-new.svg deleted file mode 100644 index 0ecc9d2..0000000 --- a/montaukos.org/fr_icons/folder-new.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/folder-symbolic.svg b/montaukos.org/fr_icons/folder-symbolic.svg deleted file mode 100644 index 148ccd6..0000000 --- a/montaukos.org/fr_icons/folder-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/folder.svg b/montaukos.org/fr_icons/folder.svg deleted file mode 100644 index 2c20935..0000000 --- a/montaukos.org/fr_icons/folder.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/format-indent-less-symbolic.svg b/montaukos.org/fr_icons/format-indent-less-symbolic.svg deleted file mode 100644 index cb7b081..0000000 --- a/montaukos.org/fr_icons/format-indent-less-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/format-indent-more-symbolic.svg b/montaukos.org/fr_icons/format-indent-more-symbolic.svg deleted file mode 100644 index 068b83b..0000000 --- a/montaukos.org/fr_icons/format-indent-more-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/format-justify-center-symbolic.svg b/montaukos.org/fr_icons/format-justify-center-symbolic.svg deleted file mode 100644 index 48e49c0..0000000 --- a/montaukos.org/fr_icons/format-justify-center-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/format-justify-left-symbolic.svg b/montaukos.org/fr_icons/format-justify-left-symbolic.svg deleted file mode 100644 index 5b50767..0000000 --- a/montaukos.org/fr_icons/format-justify-left-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/format-justify-right-symbolic.svg b/montaukos.org/fr_icons/format-justify-right-symbolic.svg deleted file mode 100644 index c851529..0000000 --- a/montaukos.org/fr_icons/format-justify-right-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/gnome-logout.svg b/montaukos.org/fr_icons/gnome-logout.svg deleted file mode 100644 index 8d1c476..0000000 --- a/montaukos.org/fr_icons/gnome-logout.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/go-home-symbolic.svg b/montaukos.org/fr_icons/go-home-symbolic.svg deleted file mode 100644 index 440d9cb..0000000 --- a/montaukos.org/fr_icons/go-home-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/go-next-symbolic.svg b/montaukos.org/fr_icons/go-next-symbolic.svg deleted file mode 100644 index f72ea3b..0000000 --- a/montaukos.org/fr_icons/go-next-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/go-previous-symbolic.svg b/montaukos.org/fr_icons/go-previous-symbolic.svg deleted file mode 100644 index aab0ef6..0000000 --- a/montaukos.org/fr_icons/go-previous-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/go-up-symbolic.svg b/montaukos.org/fr_icons/go-up-symbolic.svg deleted file mode 100644 index 2c14a3e..0000000 --- a/montaukos.org/fr_icons/go-up-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/help-about.svg b/montaukos.org/fr_icons/help-about.svg deleted file mode 100644 index 2300b65..0000000 --- a/montaukos.org/fr_icons/help-about.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/kolourpaint.svg b/montaukos.org/fr_icons/kolourpaint.svg deleted file mode 100644 index 8e98309..0000000 --- a/montaukos.org/fr_icons/kolourpaint.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/lock.svg b/montaukos.org/fr_icons/lock.svg deleted file mode 100644 index 06e1ccf..0000000 --- a/montaukos.org/fr_icons/lock.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/media-forward.svg b/montaukos.org/fr_icons/media-forward.svg deleted file mode 100644 index 515e86e..0000000 --- a/montaukos.org/fr_icons/media-forward.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/media-pause.svg b/montaukos.org/fr_icons/media-pause.svg deleted file mode 100644 index f2f6b6e..0000000 --- a/montaukos.org/fr_icons/media-pause.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/media-play.svg b/montaukos.org/fr_icons/media-play.svg deleted file mode 100644 index 449de22..0000000 --- a/montaukos.org/fr_icons/media-play.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/media-playlist-repeat-one-symbolic.svg b/montaukos.org/fr_icons/media-playlist-repeat-one-symbolic.svg deleted file mode 100644 index c61ee42..0000000 --- a/montaukos.org/fr_icons/media-playlist-repeat-one-symbolic.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/montaukos.org/fr_icons/media-playlist-repeat-song.svg b/montaukos.org/fr_icons/media-playlist-repeat-song.svg deleted file mode 100644 index 17f171c..0000000 --- a/montaukos.org/fr_icons/media-playlist-repeat-song.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/media-playlist-repeat-symbolic.svg b/montaukos.org/fr_icons/media-playlist-repeat-symbolic.svg deleted file mode 100644 index 1edb2cb..0000000 --- a/montaukos.org/fr_icons/media-playlist-repeat-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/media-playlist-repeat.svg b/montaukos.org/fr_icons/media-playlist-repeat.svg deleted file mode 100644 index c8c3818..0000000 --- a/montaukos.org/fr_icons/media-playlist-repeat.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/media-playlist-shuffle-symbolic.svg b/montaukos.org/fr_icons/media-playlist-shuffle-symbolic.svg deleted file mode 100644 index e863ddf..0000000 --- a/montaukos.org/fr_icons/media-playlist-shuffle-symbolic.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - diff --git a/montaukos.org/fr_icons/media-playlist-shuffle.svg b/montaukos.org/fr_icons/media-playlist-shuffle.svg deleted file mode 100644 index 6b7ca35..0000000 --- a/montaukos.org/fr_icons/media-playlist-shuffle.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/media-repeat-all.svg b/montaukos.org/fr_icons/media-repeat-all.svg deleted file mode 100644 index f2fc097..0000000 --- a/montaukos.org/fr_icons/media-repeat-all.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/media-repeat-single.svg b/montaukos.org/fr_icons/media-repeat-single.svg deleted file mode 100644 index 9a2d3a0..0000000 --- a/montaukos.org/fr_icons/media-repeat-single.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/media-rewind.svg b/montaukos.org/fr_icons/media-rewind.svg deleted file mode 100644 index 22cfdad..0000000 --- a/montaukos.org/fr_icons/media-rewind.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/media-stop.svg b/montaukos.org/fr_icons/media-stop.svg deleted file mode 100644 index 4bd183a..0000000 --- a/montaukos.org/fr_icons/media-stop.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/multimedia-video-player.svg b/montaukos.org/fr_icons/multimedia-video-player.svg deleted file mode 100644 index 3e4ab3e..0000000 --- a/montaukos.org/fr_icons/multimedia-video-player.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/network-wired-symbolic.svg b/montaukos.org/fr_icons/network-wired-symbolic.svg deleted file mode 100644 index 1351c08..0000000 --- a/montaukos.org/fr_icons/network-wired-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/network-wired.svg b/montaukos.org/fr_icons/network-wired.svg deleted file mode 100644 index 5539736..0000000 --- a/montaukos.org/fr_icons/network-wired.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/pavucontrol.svg b/montaukos.org/fr_icons/pavucontrol.svg deleted file mode 100644 index 43ecceb..0000000 --- a/montaukos.org/fr_icons/pavucontrol.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/pdf-viewer.svg b/montaukos.org/fr_icons/pdf-viewer.svg deleted file mode 100644 index 132cb3a..0000000 --- a/montaukos.org/fr_icons/pdf-viewer.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/montaukos.org/fr_icons/preferences-desktop-apps-symbolic.svg b/montaukos.org/fr_icons/preferences-desktop-apps-symbolic.svg deleted file mode 100644 index fa11309..0000000 --- a/montaukos.org/fr_icons/preferences-desktop-apps-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/preferences-desktop-apps.svg b/montaukos.org/fr_icons/preferences-desktop-apps.svg deleted file mode 100644 index 9592dae..0000000 --- a/montaukos.org/fr_icons/preferences-desktop-apps.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/printer-symbolic.svg b/montaukos.org/fr_icons/printer-symbolic.svg deleted file mode 100644 index e5469e8..0000000 --- a/montaukos.org/fr_icons/printer-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/printer.svg b/montaukos.org/fr_icons/printer.svg deleted file mode 100644 index ad4ed99..0000000 --- a/montaukos.org/fr_icons/printer.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/sensors-temperature-symbolic.svg b/montaukos.org/fr_icons/sensors-temperature-symbolic.svg deleted file mode 100644 index 863cfb0..0000000 --- a/montaukos.org/fr_icons/sensors-temperature-symbolic.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/montaukos.org/fr_icons/sleep.svg b/montaukos.org/fr_icons/sleep.svg deleted file mode 100644 index 75c3fa4..0000000 --- a/montaukos.org/fr_icons/sleep.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/system-file-manager-symbolic.svg b/montaukos.org/fr_icons/system-file-manager-symbolic.svg deleted file mode 100644 index 7a67e44..0000000 --- a/montaukos.org/fr_icons/system-file-manager-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/system-file-manager.svg b/montaukos.org/fr_icons/system-file-manager.svg deleted file mode 100644 index 3f5103e..0000000 --- a/montaukos.org/fr_icons/system-file-manager.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/system-monitor.svg b/montaukos.org/fr_icons/system-monitor.svg deleted file mode 100644 index 30f2649..0000000 --- a/montaukos.org/fr_icons/system-monitor.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/system-reboot.svg b/montaukos.org/fr_icons/system-reboot.svg deleted file mode 100644 index 1495fb4..0000000 --- a/montaukos.org/fr_icons/system-reboot.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/system-shutdown.svg b/montaukos.org/fr_icons/system-shutdown.svg deleted file mode 100644 index ed0d1a3..0000000 --- a/montaukos.org/fr_icons/system-shutdown.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/text-x-generic-symbolic.svg b/montaukos.org/fr_icons/text-x-generic-symbolic.svg deleted file mode 100644 index 6e8b7f8..0000000 --- a/montaukos.org/fr_icons/text-x-generic-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/text-x-generic.svg b/montaukos.org/fr_icons/text-x-generic.svg deleted file mode 100644 index 35542de..0000000 --- a/montaukos.org/fr_icons/text-x-generic.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/text_line_spacing.svg b/montaukos.org/fr_icons/text_line_spacing.svg deleted file mode 100644 index 2edeee8..0000000 --- a/montaukos.org/fr_icons/text_line_spacing.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/trash-empty.svg b/montaukos.org/fr_icons/trash-empty.svg deleted file mode 100644 index d37bd5a..0000000 --- a/montaukos.org/fr_icons/trash-empty.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/unsettings.svg b/montaukos.org/fr_icons/unsettings.svg deleted file mode 100644 index 2c2c936..0000000 --- a/montaukos.org/fr_icons/unsettings.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/user-home-symbolic.svg b/montaukos.org/fr_icons/user-home-symbolic.svg deleted file mode 100644 index 5af7efb..0000000 --- a/montaukos.org/fr_icons/user-home-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/user-home.svg b/montaukos.org/fr_icons/user-home.svg deleted file mode 100644 index 9c0414d..0000000 --- a/montaukos.org/fr_icons/user-home.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/utilities-system-monitor-symbolic.svg b/montaukos.org/fr_icons/utilities-system-monitor-symbolic.svg deleted file mode 100644 index fd41e5c..0000000 --- a/montaukos.org/fr_icons/utilities-system-monitor-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/utilities-system-monitor.svg b/montaukos.org/fr_icons/utilities-system-monitor.svg deleted file mode 100644 index 30f2649..0000000 --- a/montaukos.org/fr_icons/utilities-system-monitor.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/utilities-terminal-symbolic.svg b/montaukos.org/fr_icons/utilities-terminal-symbolic.svg deleted file mode 100644 index d4c0bea..0000000 --- a/montaukos.org/fr_icons/utilities-terminal-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/utilities-terminal.svg b/montaukos.org/fr_icons/utilities-terminal.svg deleted file mode 100644 index 5b91996..0000000 --- a/montaukos.org/fr_icons/utilities-terminal.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/view-app-grid-symbolic.svg b/montaukos.org/fr_icons/view-app-grid-symbolic.svg deleted file mode 100644 index 19bd935..0000000 --- a/montaukos.org/fr_icons/view-app-grid-symbolic.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/montaukos.org/fr_icons/view-list-bullet-symbolic.svg b/montaukos.org/fr_icons/view-list-bullet-symbolic.svg deleted file mode 100644 index c53f29a..0000000 --- a/montaukos.org/fr_icons/view-list-bullet-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/view-list-ordered-symbolic.svg b/montaukos.org/fr_icons/view-list-ordered-symbolic.svg deleted file mode 100644 index 1378004..0000000 --- a/montaukos.org/fr_icons/view-list-ordered-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/view-media-equalizer.svg b/montaukos.org/fr_icons/view-media-equalizer.svg deleted file mode 100644 index 5ccbcef..0000000 --- a/montaukos.org/fr_icons/view-media-equalizer.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/view-media-visualization.svg b/montaukos.org/fr_icons/view-media-visualization.svg deleted file mode 100644 index 48f07a2..0000000 --- a/montaukos.org/fr_icons/view-media-visualization.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/volume-level-high.svg b/montaukos.org/fr_icons/volume-level-high.svg deleted file mode 100644 index 8274a48..0000000 --- a/montaukos.org/fr_icons/volume-level-high.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/weather-clear-night.svg b/montaukos.org/fr_icons/weather-clear-night.svg deleted file mode 100644 index e0cffc8..0000000 --- a/montaukos.org/fr_icons/weather-clear-night.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/weather-clear.svg b/montaukos.org/fr_icons/weather-clear.svg deleted file mode 100644 index 8a35b33..0000000 --- a/montaukos.org/fr_icons/weather-clear.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/weather-clouds-night.svg b/montaukos.org/fr_icons/weather-clouds-night.svg deleted file mode 100644 index 0db6194..0000000 --- a/montaukos.org/fr_icons/weather-clouds-night.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/weather-clouds.svg b/montaukos.org/fr_icons/weather-clouds.svg deleted file mode 100644 index c79e94d..0000000 --- a/montaukos.org/fr_icons/weather-clouds.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/weather-few-clouds-night.svg b/montaukos.org/fr_icons/weather-few-clouds-night.svg deleted file mode 100644 index e3c4f87..0000000 --- a/montaukos.org/fr_icons/weather-few-clouds-night.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/weather-few-clouds.svg b/montaukos.org/fr_icons/weather-few-clouds.svg deleted file mode 100644 index c55594a..0000000 --- a/montaukos.org/fr_icons/weather-few-clouds.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/weather-fog.svg b/montaukos.org/fr_icons/weather-fog.svg deleted file mode 100644 index 1ce1a84..0000000 --- a/montaukos.org/fr_icons/weather-fog.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/montaukos.org/fr_icons/weather-freezing-rain.svg b/montaukos.org/fr_icons/weather-freezing-rain.svg deleted file mode 100644 index eb98f17..0000000 --- a/montaukos.org/fr_icons/weather-freezing-rain.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/montaukos.org/fr_icons/weather-hail.svg b/montaukos.org/fr_icons/weather-hail.svg deleted file mode 100644 index eb98f17..0000000 --- a/montaukos.org/fr_icons/weather-hail.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/montaukos.org/fr_icons/weather-many-clouds.svg b/montaukos.org/fr_icons/weather-many-clouds.svg deleted file mode 100644 index a88947f..0000000 --- a/montaukos.org/fr_icons/weather-many-clouds.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/weather-mist.svg b/montaukos.org/fr_icons/weather-mist.svg deleted file mode 100644 index 1ce1a84..0000000 --- a/montaukos.org/fr_icons/weather-mist.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/montaukos.org/fr_icons/weather-none-available.svg b/montaukos.org/fr_icons/weather-none-available.svg deleted file mode 100644 index 63cd5b7..0000000 --- a/montaukos.org/fr_icons/weather-none-available.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/montaukos.org/fr_icons/weather-overcast.svg b/montaukos.org/fr_icons/weather-overcast.svg deleted file mode 100644 index a88947f..0000000 --- a/montaukos.org/fr_icons/weather-overcast.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/weather-severe-alert.svg b/montaukos.org/fr_icons/weather-severe-alert.svg deleted file mode 100644 index 5eaf23b..0000000 --- a/montaukos.org/fr_icons/weather-severe-alert.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/montaukos.org/fr_icons/weather-showers-scattered.svg b/montaukos.org/fr_icons/weather-showers-scattered.svg deleted file mode 100644 index 507b1dd..0000000 --- a/montaukos.org/fr_icons/weather-showers-scattered.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/weather-showers.svg b/montaukos.org/fr_icons/weather-showers.svg deleted file mode 100644 index 6e808b6..0000000 --- a/montaukos.org/fr_icons/weather-showers.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/weather-snow-rain.svg b/montaukos.org/fr_icons/weather-snow-rain.svg deleted file mode 100644 index 62627fb..0000000 --- a/montaukos.org/fr_icons/weather-snow-rain.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/weather-snow-scattered.svg b/montaukos.org/fr_icons/weather-snow-scattered.svg deleted file mode 100644 index 7a674aa..0000000 --- a/montaukos.org/fr_icons/weather-snow-scattered.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/weather-snow.svg b/montaukos.org/fr_icons/weather-snow.svg deleted file mode 100644 index 6dc59e7..0000000 --- a/montaukos.org/fr_icons/weather-snow.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/weather-storm.svg b/montaukos.org/fr_icons/weather-storm.svg deleted file mode 100644 index 2fb8f6b..0000000 --- a/montaukos.org/fr_icons/weather-storm.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/montaukos.org/fr_icons/weather-widget.svg b/montaukos.org/fr_icons/weather-widget.svg deleted file mode 100644 index 3713c6f..0000000 --- a/montaukos.org/fr_icons/weather-widget.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/weather-windy.svg b/montaukos.org/fr_icons/weather-windy.svg deleted file mode 100644 index d52ec2a..0000000 --- a/montaukos.org/fr_icons/weather-windy.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/montaukos.org/fr_icons/web-browser-symbolic.svg b/montaukos.org/fr_icons/web-browser-symbolic.svg deleted file mode 100644 index 5a4a340..0000000 --- a/montaukos.org/fr_icons/web-browser-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/fr_icons/web-browser.svg b/montaukos.org/fr_icons/web-browser.svg deleted file mode 100644 index 4dae422..0000000 --- a/montaukos.org/fr_icons/web-browser.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/montaukos.org/fr_icons/window-close-symbolic.svg b/montaukos.org/fr_icons/window-close-symbolic.svg deleted file mode 100644 index 5c020b3..0000000 --- a/montaukos.org/fr_icons/window-close-symbolic.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/montaukos.org/fr_icons/window-maximize-symbolic.svg b/montaukos.org/fr_icons/window-maximize-symbolic.svg deleted file mode 100644 index 6c0db07..0000000 --- a/montaukos.org/fr_icons/window-maximize-symbolic.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/montaukos.org/fr_icons/window-minimize-symbolic.svg b/montaukos.org/fr_icons/window-minimize-symbolic.svg deleted file mode 100644 index 3333f50..0000000 --- a/montaukos.org/fr_icons/window-minimize-symbolic.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/montaukos.org/images/montaukos-demo.jpg b/montaukos.org/images/montaukos-demo.jpg deleted file mode 100644 index d65211a..0000000 Binary files a/montaukos.org/images/montaukos-demo.jpg and /dev/null differ diff --git a/montaukos.org/images/mtk_doomgame.png b/montaukos.org/images/mtk_doomgame.png deleted file mode 100644 index 2123c0d..0000000 Binary files a/montaukos.org/images/mtk_doomgame.png and /dev/null differ diff --git a/montaukos.org/images/mtk_procmgr_devexplorer.png b/montaukos.org/images/mtk_procmgr_devexplorer.png deleted file mode 100644 index 2f1bd42..0000000 Binary files a/montaukos.org/images/mtk_procmgr_devexplorer.png and /dev/null differ diff --git a/montaukos.org/index.html b/montaukos.org/index.html deleted file mode 100644 index 589e2e8..0000000 --- a/montaukos.org/index.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - MontaukOS - - - - - - - - - -
-
-

MontaukOS

-
- -
-

About

-

-MontaukOS is a multi-user, multitasking operating system that runs on bare metal. -It features its own kernel and modern userspace with its own desktop environment, -targeting both emulators and real hardware. -

-

Downloads & release notes | Setup tutorial

-

-

-
-
- -

Screenshot of MontaukOS 0.1.8

- -
-
-

Copyright © 2025-2026 Montauk Operating System Project

- -
- - - diff --git a/montaukos.org/license.html b/montaukos.org/license.html deleted file mode 100644 index ebddd42..0000000 --- a/montaukos.org/license.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - License - MontaukOS - - - - - - - - - -
-
-

MontaukOS Software License

-
- -
- -

Copyright (c) 2025-2026 Montauk Operating System Project (the "MontaukOS Project").

- -

This document governs the use of MontaukOS, including its kernel, userspace -programs, libraries, bootable images, documentation, artwork, and all -accompanying materials (collectively, the "Software"), except for the -third-party components described in Section 5. MontaukOS is open-source -software: its source code is published for anyone to read, build, and modify, -subject to the terms below.

- -

A plain-text version of this license is available at -license.txt.

- -

1. Grant of Rights

- -

Subject to the conditions in Section 2, the MontaukOS Project grants you a -worldwide, royalty-free, non-exclusive license to:

- - - -

2. Conditions

- -

The rights in Section 1 are conditioned on the following:

- - - -

3. Contributions and Feedback

- -

If you submit code, suggestions, or other feedback to the MontaukOS Project, -you grant the MontaukOS Project a perpetual, irrevocable, worldwide, -royalty-free license to use, modify, and incorporate it for any purpose.

- -

4. Termination

- -

This license terminates automatically if you materially breach its terms and -fail to cure the breach within 30 days of becoming aware of it. Upon -termination you must stop distributing the Software; copies already lawfully -obtained by others are unaffected. Sections 3, 5, 6, and 7 survive -termination.

- -

5. Third-Party Components

- -

The Software incorporates or is distributed alongside third-party components -that remain the property of their respective owners and are licensed under -their own terms, including the Limine bootloader, Flanterm, BearSSL, stb_image -and stb_truetype, the DOOM engine (via doomgeneric), the NetSurf web browser and -the NetSurf project libraries (libcss, libdom, libhubbub, libparserutils, -libwapcaplet, libnsutils, libnslog, libnspsl, libnsgif, libnsbmp), utf8proc, -zlib, the Tiny C Compiler, Lua, the GNU Compiler Collection (GCC), GNU Binutils, -the Flat Remix icon theme, the bundled fonts, the Mozilla CA certificate bundle, -Intel Bluetooth and Wi-Fi (iwlwifi) firmware, and the default wallpaper -photograph. GCC and GNU Binutils are -included as the native MontaukOS SDK toolchain (GCC 14.2.0 and Binutils 2.43.1) -under the GNU GPLv3, with the GCC Runtime Library Exception where applicable. -Copyright (C) 1987-2024 Free Software Foundation, Inc.; additional copyrights -belong to the respective GCC, GNU Binutils, and other contributors. The NetSurf -application is included under the GNU GPLv2; its visual artwork is under the MIT -License. Copyright (C) the NetSurf Browser Project and its respective -contributors. -Nothing in this license modifies, supersedes, or limits the license terms -applicable to those components; to the extent of any conflict, the third-party -license controls for that component. The applicable copyright notices and -license texts are set out in the -THIRD-PARTY-NOTICES file that accompanies -the Software (also on the MontaukOS ISO at 0:/os/licenses/).

- -

6. No Warranty

- -

THE SOFTWARE IS PROVIDED "AS IS" AND "AS AVAILABLE," WITHOUT WARRANTY OF ANY -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT. -MONTAUKOS IS EXPERIMENTAL, HOBBYIST SYSTEM SOFTWARE THAT OPERATES AT A LOW -LEVEL AND MAY CAUSE LOSS OF DATA OR DAMAGE TO HARDWARE; YOU USE IT ENTIRELY AT -YOUR OWN RISK.

- -

7. Limitation of Liability

- -

TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL THE -MONTAUKOS PROJECT OR ITS AUTHOR BE LIABLE FOR ANY INDIRECT, INCIDENTAL, -SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR FOR ANY LOSS OF PROFITS, DATA, -USE, OR GOODWILL, ARISING OUT OF OR RELATED TO YOUR USE OF OR INABILITY TO USE -THE SOFTWARE, WHETHER BASED IN CONTRACT, TORT, OR ANY OTHER LEGAL THEORY, EVEN -IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE TOTAL AGGREGATE LIABILITY OF -THE MONTAUKOS PROJECT SHALL NOT EXCEED THE AMOUNT YOU PAID, IF ANY, FOR THE -SOFTWARE.

- -

8. General

- -

If any provision of this license is held unenforceable, the remaining -provisions remain in full force and effect. The failure to enforce any -provision is not a waiver of the right to do so later.

- -

For licensing inquiries (including commercial distribution), contact: -licensing@montaukos.org

- -
- -
-Back to Home -
- -
- - diff --git a/programs/GNUmakefile b/programs/GNUmakefile index f81649f..4061b8a 100644 --- a/programs/GNUmakefile +++ b/programs/GNUmakefile @@ -89,7 +89,7 @@ OSDATADST := $(patsubst $(OSDATADIR)/%,$(BINDIR)/os/data/%,$(OSDATASRC)) # Third-party license texts and notices bundled into bin/os/licenses/. LICDIR := data/licenses LICSRC := $(wildcard $(LICDIR)/*.txt) -LICDST := $(patsubst $(LICDIR)/%,$(BINDIR)/os/licenses/%,$(LICSRC)) $(BINDIR)/os/licenses/NOTICES.txt $(BINDIR)/os/licenses/LICENSE.txt +LICDST := $(patsubst $(LICDIR)/%,$(BINDIR)/os/licenses/%,$(LICSRC)) # Wallpapers bundled into bin/os/wallpapers/. WPDIR := data/wallpapers @@ -384,17 +384,6 @@ $(BINDIR)/os/data/%: $(OSDATADIR)/% mkdir -p $(BINDIR)/os/data cp $< $@ -# Copy third-party license texts into bin/os/licenses/. The notices and -# MontaukOS license files are sourced from the website copies so there is a -# single file of each to keep updated. -$(BINDIR)/os/licenses/NOTICES.txt: ../montaukos.org/THIRD-PARTY-NOTICES.txt - mkdir -p $(BINDIR)/os/licenses - cp $< $@ - -$(BINDIR)/os/licenses/LICENSE.txt: ../montaukos.org/license.txt - mkdir -p $(BINDIR)/os/licenses - cp $< $@ - $(BINDIR)/os/licenses/%: $(LICDIR)/% mkdir -p $(BINDIR)/os/licenses cp $< $@ diff --git a/montaukos.org/license.txt b/programs/data/licenses/LICENSE.txt similarity index 100% rename from montaukos.org/license.txt rename to programs/data/licenses/LICENSE.txt diff --git a/montaukos.org/THIRD-PARTY-NOTICES.txt b/programs/data/licenses/NOTICES.txt similarity index 100% rename from montaukos.org/THIRD-PARTY-NOTICES.txt rename to programs/data/licenses/NOTICES.txt