# SwapForge (swap-forge) πŸ”„ [![GitHub Sponsors](https://img.shields.io/badge/Sponsor-GitHub%20Sponsors-blue?logo=github)](https://github.com/sponsors/kevinveenbirkenbach) [![Patreon](https://img.shields.io/badge/Support-Patreon-orange?logo=patreon)](https://www.patreon.com/c/kevinveenbirkenbach) [![Buy Me a Coffee](https://img.shields.io/badge/Buy%20me%20a%20Coffee-Funding-yellow?logo=buymeacoffee)](https://buymeacoffee.com/kevinveenbirkenbach) [![PayPal](https://img.shields.io/badge/Donate-PayPal-blue?logo=paypal)](https://s.veen.world/paypaldonate) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) [![GitHub stars](https://img.shields.io/github/stars/kevinveenbirkenbach/swap-forge.svg?style=social)](https://github.com/kevinveenbirkenbach/swap-forge/stargazers) SwapForge is a small Python CLI for creating and managing Linux swapfiles. Whether you need to boost system performance or add swap space to your setup, SwapForge automates the process quickly and reliably β€” and it knows the difference between btrfs and everything else. --- ## 🧭 How it works ```mermaid flowchart TD A["swap-forge SIZE"] --> B["parse SIZE into MiB"] B --> B2{"parsable?"} B2 -- no --> X["Invalid size format - exit 1"] B2 -- yes --> C["findmnt -no FSTYPE /"] C --> D{"root filesystem is btrfs?"} D -- yes --> E["target: /var/swap/swapfile"] D -- no --> F["target: /swapfile"] E --> G["read the size of the existing swapfile"] F --> G G --> H{"same size already?"} H -- yes --> Y["Skipping - exit 0"] H -- no --> I{"a swapfile is already there?"} I -- yes --> J["swapoff, delete it, drop its fstab line"] I -- no --> K J --> K{"root filesystem is btrfs?"} K -- yes --> L["chattr +C, turn compression off, allocate with dd"] K -- no --> M["allocate with fallocate"] L --> N["chmod 600"] M --> N N --> O["mkswap"] O --> P["swapon"] P --> Q["append the entry to /etc/fstab"] ``` The fstab entry is written **after** activation succeeds, so a failed run never leaves a half-written fstab behind. --- ## πŸ›  Features - **Automated Swapfile Creation:** Easily create a swapfile with a specified size. - **Btrfs Aware:** Disables copy-on-write and compression on the swap directory and allocates with `dd`; other filesystems use `fallocate`. - **FSTAB Integration:** Automatically updates `/etc/fstab` to ensure the swapfile is mounted at boot. - **Safety Checks:** Skips creation when a swapfile of the correct size already exists, and recreates it when the size differs. - **Simple CLI Interface:** Run the command with a single argument. --- ## πŸ“₯ Installation ```bash pip install swap-forge ``` pip is the single supported installation path. The package installs **two** identical commands: `swap-forge` (primary) and `swafo` (kept for older documentation and scripts). --- ## πŸ”§ Requirements - **Python 3.10+** 🐍 - **root privileges** β€” the tool writes `/etc/fstab` and activates swap - Always required on `PATH`: `findmnt`, `swapoff`, `chmod`, `mkswap`, `swapon` - On a **btrfs** root additionally: `chattr`, `btrfs`, `dd` - On any **other** root filesystem additionally: `fallocate` If a required command is missing, the tool exits with code `127` and a one‑line error instead of a traceback. --- ## πŸš€ Usage Run SwapForge by specifying the desired swapfile size. For example, to create a 2G swapfile: ```bash sudo swap-forge 2G ``` Accepted sizes are whole numbers with an optional unit: `2048`, `2048M`, `2048MB`, `64G`, `64GB`. Without a unit the value is read as MiB. The swapfile location follows the root filesystem: | Root filesystem | Swapfile | | --- | --- | | `btrfs` | `/var/swap/swapfile` | | anything else | `/swapfile` | SwapForge compares the existing swapfile against the requested size, skips when they match, and otherwise removes the old one β€” including its `/etc/fstab` line β€” before creating the new one. ### Exit codes | Code | Meaning | | --- | --- | | `0` | Swapfile is in place, either created or already correct. | | `1` | Invalid size argument, or one of the swap commands failed. | | `2` | Invalid command line arguments. | | `127` | A required command is not installed. | --- ## πŸ§ͺ Development ```bash make lint # ruff check + ruff format --check make format # apply ruff format make test # unit + integration tests make test-unit make test-integration make test-e2e # install the package in a container and exercise the CLI ``` Tests run against the working tree β€” the `Makefile` puts `src/` on `PYTHONPATH`, so no install is needed. Every command execution is mocked and `fstab` handling is exercised against a temporary file, so the suite never touches real swap. --- ## πŸ§‘β€πŸ’» Author Developed by **Kevin Veen-Birkenbach** - πŸ“§ [kevin@veen.world](mailto:kevin@veen.world) - 🌐 [https://www.veen.world](https://www.veen.world) --- ## πŸ“œ License This project is licensed under the **MIT License**. --- ## 🀝 Contributions Contributions are welcome! Feel free to fork the repository, submit pull requests, or open issues if you have suggestions or encounter any problems. Let's make Linux swap management easier together! 😊