A modular, async Blog API backend for FastAPI microservices.
Provides streamlined CRUD operations for articles and authors, supports nested author details within article endpoints, and enables simple association management between content and contributors.
--
2.49.1
From aab3b357cfa275d96f35505b95f993ae01b17878 Mon Sep 17 00:00:00 2001
From: Vishesh 'ironeagle' Bangotra
Date: Thu, 20 Nov 2025 20:43:52 +0530
Subject: [PATCH 02/14] requirements for mkdocs and gitignore
---
.gitignore | 2 ++
requirements.txt | 6 ++++++
2 files changed, 8 insertions(+)
create mode 100644 .gitignore
create mode 100644 requirements.txt
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..483de3d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.venv
+.idea
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..851d6a0
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,6 @@
+# Doc Packages
+mkdocs==1.6.1
+mkdocs-material==9.6.23
+neoteroi-mkdocs==1.1.3
+pymdown-extensions==10.16.1
+mkdocs-swagger-ui-tag==0.7.2
--
2.49.1
From fb65cc8a5770b5080b6af66dab603c8980eba392 Mon Sep 17 00:00:00 2001
From: Vishesh 'ironeagle' Bangotra
Date: Thu, 20 Nov 2025 20:52:57 +0530
Subject: [PATCH 03/14] basic md files for media-manager tutorial. needs to be
proof read and humanized
---
tutorials/media-manager/getting-started.md | 91 ++++++
tutorials/media-manager/index.md | 71 +++++
tutorials/media-manager/mkdocs.yml | 65 +++++
tutorials/media-manager/scripts/docker/.env | 4 +
.../scripts/docker/docker-compose.yaml | 192 +++++++++++++
.../scripts/shell/install-docker.sh | 42 +++
.../scripts/shell/install-plex.sh | 49 ++++
.../scripts/shell/install-qbittorrent.sh | 44 +++
.../scripts/shell/install-samba.sh | 99 +++++++
.../scripts/shell/setup-mount-points/ext4.sh | 128 +++++++++
.../scripts/shell/setup-mount-points/ntfs.sh | 136 +++++++++
.../media-manager/steps/install-docker.md | 172 +++++++++++
tutorials/media-manager/steps/install-plex.md | 124 ++++++++
.../steps/install-qbittorrent.md | 134 +++++++++
.../media-manager/steps/install-samba.md | 164 +++++++++++
tutorials/media-manager/steps/overview.md | 130 +++++++++
.../steps/setup-media-manager.md | 268 ++++++++++++++++++
.../media-manager/steps/setup-mount-points.md | 156 ++++++++++
18 files changed, 2069 insertions(+)
create mode 100644 tutorials/media-manager/getting-started.md
create mode 100644 tutorials/media-manager/index.md
create mode 100644 tutorials/media-manager/mkdocs.yml
create mode 100644 tutorials/media-manager/scripts/docker/.env
create mode 100644 tutorials/media-manager/scripts/docker/docker-compose.yaml
create mode 100644 tutorials/media-manager/scripts/shell/install-docker.sh
create mode 100644 tutorials/media-manager/scripts/shell/install-plex.sh
create mode 100644 tutorials/media-manager/scripts/shell/install-qbittorrent.sh
create mode 100644 tutorials/media-manager/scripts/shell/install-samba.sh
create mode 100644 tutorials/media-manager/scripts/shell/setup-mount-points/ext4.sh
create mode 100644 tutorials/media-manager/scripts/shell/setup-mount-points/ntfs.sh
create mode 100644 tutorials/media-manager/steps/install-docker.md
create mode 100644 tutorials/media-manager/steps/install-plex.md
create mode 100644 tutorials/media-manager/steps/install-qbittorrent.md
create mode 100644 tutorials/media-manager/steps/install-samba.md
create mode 100644 tutorials/media-manager/steps/overview.md
create mode 100644 tutorials/media-manager/steps/setup-media-manager.md
create mode 100644 tutorials/media-manager/steps/setup-mount-points.md
diff --git a/tutorials/media-manager/getting-started.md b/tutorials/media-manager/getting-started.md
new file mode 100644
index 0000000..7151d67
--- /dev/null
+++ b/tutorials/media-manager/getting-started.md
@@ -0,0 +1,91 @@
+# Prerequisites
+
+Before beginning the Media Manager setup, ensure that your system — whether it is a **fully configured and networked Raspberry Pi** or any other **Linux-based OS** — meets the minimum preparation requirements. Although this guide uses a Raspberry Pi as the reference environment, the setup works on almost any Linux host with minimal or no modification.
+
+---
+
+## Recommended System Requirements
+
+* Raspberry Pi 4 / 5 (4GB or 8GB recommended), or any Linux server/VM
+* 64-bit OS
+* Minimum 32GB storage
+* External HDD/SSD for media storage
+* Stable network connection (Ethernet recommended)
+
+---
+
+## What Should Already Be Set Up
+
+### 1. Raspberry Pi flashed and booted
+
+Your system should already have:
+
+* Raspberry Pi OS / Ubuntu Server installed
+* First boot completed
+* System updated:
+
+ ```bash
+ sudo apt update && sudo apt upgrade -y
+ ```
+
+### 2. Network configuration
+
+You should have:
+
+* Working network access
+* Static IP or DHCP reservation
+* SSH enabled (recommended):
+
+ ```bash
+ sudo systemctl enable ssh --now
+ ```
+
+### 3. Storage connected and mounted
+
+If using external HDD/SSD:
+
+* Drives physically connected
+* File systems recognized
+* Drives mounted persistently via `/etc/fstab`, or prepared for mounting in the Setup Mount Points step
+
+### 4. System time and timezone configured
+
+```bash
+sudo timedatectl set-timezone Asia/Kolkata
+```
+
+### 5. Basic Linux familiarity
+
+You should be comfortable with:
+
+* Navigating directories
+* Editing files using nano or vim
+* Running commands via SSH
+
+---
+
+## Optional but Recommended
+
+### Enable UFW Firewall
+
+```bash
+sudo apt install ufw
+sudo ufw enable
+sudo ufw allow ssh
+```
+
+### Set a hostname
+
+```bash
+sudo hostnamectl set-hostname media-manager
+```
+
+### Hardware acceleration for Plex (optional)
+
+Raspberry Pi users may enable VAAPI/V4L2 for improved transcoding.
+
+---
+
+## Next Step
+
+Proceed to **[Overview](steps/overview.md)** once the above setup is complete.
diff --git a/tutorials/media-manager/index.md b/tutorials/media-manager/index.md
new file mode 100644
index 0000000..9ef3de5
--- /dev/null
+++ b/tutorials/media-manager/index.md
@@ -0,0 +1,71 @@
+# Media Manager Setup Guide
+
+Welcome to the **Media Manager Tutorial**.
+This guide walks you through setting up a complete, automated media workflow using:
+
+- **Docker** (host)
+- **Plex Media Server** (host)
+- **qBittorrent** (host)
+- **ARR Stack** (Radarr, Sonarr, Prowlarr, Bazarr) via **docker-compose**
+
+Whether you're setting up a home media server or a full automated media pipeline, this documentation provides clear, step-by-step instructions from installation to daily usage.
+
+---
+
+## 📚 What You Will Build
+
+By the end of this guide, you will have a fully configured media management system that:
+
+- Automates movie and TV downloads
+- Organizes media files into structured libraries
+- Streams content through Plex locally or remotely
+- Integrates Radarr/Sonarr with qBittorrent
+- Automatically searches for new releases
+- Repairs metadata and subtitles
+- Requires minimal manual intervention once running
+
+---
+
+## 📁 Components Overview
+
+| Component | Installed On | Purpose |
+|------------------|--------------|---------|
+| **Docker** | Host | Runs containerized media services (ARR stack) |
+| **Plex** | Host | Streams your organized movies/TV shows |
+| **qBittorrent** | Host | Torrent client for automated downloads |
+| **Arr Stack** (Radarr, Sonarr, Prowlarr, Bazarr) | Docker-Compose | Automated search, download, organization, metadata, subtitles |
+
+---
+
+## 🚀 Quick Navigation
+
+Use the links below to jump to any part of the guide:
+
+| Section | Description |
+|---------|-------------|
+| [Getting Started](getting-started.md) | Requirements, OS, network, prerequisites |
+| [Overview](steps/overview.md) | Summary of the installation workflow |
+| [Setup Mount Points](steps/setup-mount-points.md) | Create directories for media, downloads, configs |
+| [Install Docker](steps/install-docker.md) | Install Docker + docker-compose |
+| [Install Plex](steps/install-plex.md) | Install and configure Plex Media Server |
+| [Install qBittorrent](steps/install-qbittorrent.md) | Install and configure qBittorrent |
+| [Setup Media Manager](steps/setup-media-manager.md) | Deploy Radarr, Sonarr, Prowlarr, Bazarr with docker-compose |
+| [Usage Guide](usage.md) | How to use Plex, Arr, automation steps |
+| [Troubleshooting](troubleshooting.md) | Common issues and fixes |
+
+---
+
+## 🧭 How to Use This Guide
+
+This tutorial is structured linearly. You should follow the sections in order unless you already have certain components installed.
+
+---
+
+## 💬 Need Help?
+
+Each step includes explanations, commands, and troubleshooting tips.
+If you're stuck, refer to the troubleshooting section or review each command carefully.
+
+---
+
+Let’s begin with the basics → **[Getting Started](getting-started.md)**
diff --git a/tutorials/media-manager/mkdocs.yml b/tutorials/media-manager/mkdocs.yml
new file mode 100644
index 0000000..8090f93
--- /dev/null
+++ b/tutorials/media-manager/mkdocs.yml
@@ -0,0 +1,65 @@
+site_name: Media Manager Tutorial
+nav:
+ - Home: index.md
+ - Getting Started: getting-started.md
+ - Installation:
+ - Overview: steps/overview.md
+ - Setup Mount Points: steps/setup-mount-points.md
+ - Install Docker: steps/install-docker.md
+ - Install Plex: steps/install-plex.md
+ - Install Qbittorrent: steps/install-qbittorrent.md
+ - Setup Media Manager: steps/setup-media-manager.md
+ - Optional Installation:
+ - Install Samba: steps/install-samba.md
+
+theme:
+ name: material
+ features:
+ # 🔽 Navigation UX
+ - navigation.expand # Auto-expand sections
+ - navigation.sections # Group pages visually
+ - navigation.top # Floating "back to top" button
+ - toc.integrate # Integrate ToC into sidebar
+
+ # 💡 Content & Code
+ - content.code.annotate # Annotate code blocks
+ - content.code.copy # Copy button on code blocks
+ - content.code.select # ✨ Click to select line blocks
+ - content.code.line_numbers # ✨ Line numbers by default
+ - content.tabs.link # Linked tabbed content
+ - content.tooltips # Hover tooltips for terms
+ - content.action.edit # “Edit this page” link
+
+ # 🧭 Search & UX
+ - search.suggest # Smart search suggestions
+ - search.highlight # Highlight matches
+ - search.share # Shareable search URLs
+
+ # 🧱 Structure & Polish
+ - header.autohide # Auto-hide navbar on scroll
+ - announce.dismiss # Dismissible announcement bar
+ - footer.social # Social icons in footer
+ palette:
+ scheme: slate # Dark mode
+ primary: blue grey # Main color
+ accent: teal # Highlight color
+ icon:
+ logo: material/database # DB Icon
+ repo: fontawesome/brands/github
+ font:
+ text: Roboto
+ code: JetBrains Mono
+
+markdown_extensions:
+ - pymdownx.highlight:
+ anchor_linenums: true
+ linenums_style: table
+ pygments_lang_class: true
+ use_pygments: true
+ auto_title: true
+ - pymdownx.inlinehilite
+ - pymdownx.snippets
+ - pymdownx.superfences
+
+extra_css:
+ - https://unpkg.com/dracula-prism/dist/css/dracula-prism.css
diff --git a/tutorials/media-manager/scripts/docker/.env b/tutorials/media-manager/scripts/docker/.env
new file mode 100644
index 0000000..0de150a
--- /dev/null
+++ b/tutorials/media-manager/scripts/docker/.env
@@ -0,0 +1,4 @@
+# Environment variables
+TZ=Asia/Kolkata
+PUID=1000
+PGID=1000
\ No newline at end of file
diff --git a/tutorials/media-manager/scripts/docker/docker-compose.yaml b/tutorials/media-manager/scripts/docker/docker-compose.yaml
new file mode 100644
index 0000000..8111661
--- /dev/null
+++ b/tutorials/media-manager/scripts/docker/docker-compose.yaml
@@ -0,0 +1,192 @@
+# Shared storage configuration
+x-shared-storage: &shared_data_volume
+ type: bind
+ source: /mnt/omnissiah-vault/data/media-manager
+ target: /data
+ bind:
+ create_host_path: true
+
+# Service-specific volume configurations
+x-volume-configs:
+ jellyseerr: &jellyseerr_volumes
+ - type: bind
+ source: /mnt/omnissiah-vault/configs/jellyseerr
+ target: /app/config
+ bind:
+ create_host_path: true
+
+ prowlarr: &prowlarr_volumes
+ - type: bind
+ source: /mnt/omnissiah-vault/configs/prowlarr
+ target: /config
+ bind:
+ create_host_path: true
+ - <<: *shared_data_volume
+
+ sonarr: &sonarr_volumes
+ - type: bind
+ source: /mnt/omnissiah-vault/configs/sonarr
+ target: /config
+ bind:
+ create_host_path: true
+ - <<: *shared_data_volume
+
+ radarr: &radarr_volumes
+ - type: bind
+ source: /mnt/omnissiah-vault/configs/radarr
+ target: /config
+ bind:
+ create_host_path: true
+ - <<: *shared_data_volume
+
+ bazarr: &bazarr_volumes
+ - type: bind
+ source: /mnt/omnissiah-vault/configs/bazarr
+ target: /config
+ bind:
+ create_host_path: true
+ - <<: *shared_data_volume
+
+services:
+ jellyseerr:
+ image: fallenbagel/jellyseerr:latest
+ container_name: jellyseerr
+ ports: ["5055:5055"]
+ environment:
+ - PUID=${PUID}
+ - PGID=${PGID}
+ - TZ=${TZ}
+ volumes: *jellyseerr_volumes
+ networks:
+ - media-net
+ extra_hosts:
+ - "host.docker.internal:host-gateway"
+ healthcheck:
+ test: ["CMD", "wget", "-qO-", "http://localhost:5055"]
+ interval: 1m
+ retries: 3
+ restart: unless-stopped
+ dns:
+ - 1.1.1.1
+ - 8.8.8.8
+
+ prowlarr:
+ image: lscr.io/linuxserver/prowlarr:latest
+ container_name: prowlarr
+ ports: ["9696:9696"]
+ volumes: *prowlarr_volumes
+ environment:
+ - PUID=${PUID}
+ - PGID=${PGID}
+ - TZ=${TZ}
+ networks:
+ - media-net
+ extra_hosts:
+ - "host.docker.internal:host-gateway"
+ healthcheck:
+ test: [ "CMD", "curl", "-f", "http://localhost:9696" ]
+ interval: 1m
+ retries: 3
+ restart: unless-stopped
+ dns:
+ - 1.1.1.1
+ - 8.8.8.8
+
+ sonarr:
+ image: lscr.io/linuxserver/sonarr:latest
+ container_name: sonarr
+ ports: ["8989:8989"]
+ volumes: *sonarr_volumes
+ environment:
+ - PUID=${PUID}
+ - PGID=${PGID}
+ - TZ=${TZ}
+ networks:
+ - media-net
+ extra_hosts:
+ - "host.docker.internal:host-gateway"
+ healthcheck:
+ test: [ "CMD", "curl", "-f", "http://localhost:8989" ]
+ interval: 1m
+ retries: 3
+ restart: unless-stopped
+ dns:
+ - 1.1.1.1
+ - 8.8.8.8
+
+ radarr:
+ image: lscr.io/linuxserver/radarr:latest
+ container_name: radarr
+ ports: ["7878:7878"]
+ volumes: *radarr_volumes
+ environment:
+ - PUID=${PUID}
+ - PGID=${PGID}
+ - TZ=${TZ}
+ networks:
+ - media-net
+ extra_hosts:
+ - "host.docker.internal:host-gateway"
+ healthcheck:
+ test: [ "CMD", "curl", "-f", "http://localhost:7878" ]
+ interval: 1m
+ retries: 3
+ restart: unless-stopped
+ dns:
+ - 1.1.1.1
+ - 8.8.8.8
+
+ bazarr:
+ image: lscr.io/linuxserver/bazarr:latest
+ container_name: bazarr
+ ports: ["6767:6767"]
+ volumes: *bazarr_volumes
+ environment:
+ - PUID=${PUID}
+ - PGID=${PGID}
+ - TZ=${TZ}
+ networks:
+ - media-net
+ depends_on:
+ - sonarr
+ - radarr
+ extra_hosts:
+ - "host.docker.internal:host-gateway"
+ healthcheck:
+ test: [ "CMD", "curl", "-f", "http://localhost:6767" ]
+ interval: 1m
+ retries: 3
+ restart: unless-stopped
+ dns:
+ - 1.1.1.1
+ - 8.8.8.8
+
+ ombi:
+ image: lscr.io/linuxserver/ombi:latest
+ container_name: ombi
+ environment:
+ - PUID=${PUID}
+ - PGID=${PGID}
+ - TZ=${TZ}
+ volumes:
+ - /mnt/omnissiah-vault/configs/ombi:/config
+ ports: ["3579:3579"]
+ networks:
+ - media-net
+ extra_hosts:
+ - "host.docker.internal:host-gateway"
+ healthcheck:
+ test: [ "CMD", "curl", "-f", "http://localhost:3579" ]
+ interval: 1m
+ retries: 3
+ restart: unless-stopped
+ dns:
+ - 1.1.1.1
+ - 8.8.8.8
+
+networks:
+ media-net:
+ driver: bridge
+ labels:
+ - "com.media-stack.network=main"
+ - "com.media-stack.description=Primary network for *arr stack communication with IPv6"
diff --git a/tutorials/media-manager/scripts/shell/install-docker.sh b/tutorials/media-manager/scripts/shell/install-docker.sh
new file mode 100644
index 0000000..918ee0d
--- /dev/null
+++ b/tutorials/media-manager/scripts/shell/install-docker.sh
@@ -0,0 +1,42 @@
+#!/bin/bash
+
+# Update and upgrade system packages
+echo "Updating system packages..."
+sudo apt-get update
+sudo apt-get upgrade -y
+
+# Remove old Docker versions if any
+echo "Removing old Docker versions..."
+for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do
+ sudo apt-get remove -y $pkg
+done
+
+# Install prerequisites for Docker Compose
+echo "Installing prerequisites for Docker Compose..."
+sudo apt-get install -y libffi-dev libssl-dev python3 python3-pip
+
+# Install Docker using the official convenience script
+echo "Installing Docker..."
+curl -fsSL https://get.docker.com -o get-docker.sh
+sudo sh get-docker.sh
+
+# Add current user to the Docker group
+echo "Adding user to docker group..."
+sudo usermod -aG docker $USER
+
+# Enable and start Docker service
+echo "Enabling and starting Docker service..."
+sudo systemctl enable docker
+sudo systemctl start docker
+
+# Install Docker Compose
+echo "Installing Docker Compose..."
+sudo pip3 install docker-compose
+
+# Verify Docker and Docker Compose versions
+echo "Docker version:"
+docker --version
+echo "Docker Compose version:"
+docker-compose --version
+
+echo "Installation complete. Please reboot your Raspberry Pi."
diff --git a/tutorials/media-manager/scripts/shell/install-plex.sh b/tutorials/media-manager/scripts/shell/install-plex.sh
new file mode 100644
index 0000000..cc0a068
--- /dev/null
+++ b/tutorials/media-manager/scripts/shell/install-plex.sh
@@ -0,0 +1,49 @@
+#!/bin/bash
+
+# Define your custom Plex config directory
+CUSTOM_PLEX_CONFIG="/mnt/machine-spirit/configs/plex"
+
+# Update and upgrade system packages
+echo "Updating system packages..."
+sudo apt update
+sudo apt full-upgrade -y
+
+# Install prerequisites
+echo "Installing prerequisites..."
+sudo apt install -y apt-transport-https curl
+
+# Add Plex official repository GPG key and repo
+echo "Adding Plex repository..."
+curl https://downloads.plex.tv/plex-keys/PlexSign.key | gpg --dearmor | sudo tee /usr/share/keyrings/plex-archive-keyring.gpg > /dev/null
+
+echo "deb [signed-by=/usr/share/keyrings/plex-archive-keyring.gpg] https://downloads.plex.tv/repo/deb public main" | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
+
+# Update package lists with Plex repo
+sudo apt update
+
+# Install Plex Media Server
+echo "Installing Plex Media Server..."
+sudo apt install -y plexmediaserver
+
+# Stop Plex service before moving config
+sudo systemctl stop plexmediaserver
+
+# Move current Plex config to custom location
+echo "Moving Plex config to custom directory..."
+sudo rsync -av /var/lib/plexmediaserver/ "$CUSTOM_PLEX_CONFIG"/
+
+# Backup and remove existing config directory and create symlink
+echo "Setting up symlink from default location to custom config path..."
+sudo mv /var/lib/plexmediaserver /var/lib/plexmediaserver.bak
+sudo ln -s "$CUSTOM_PLEX_CONFIG" /var/lib/plexmediaserver
+
+# Set correct permissions
+echo "Setting permissions for Plex user on custom directory..."
+sudo chown -R plex:plex "$CUSTOM_PLEX_CONFIG"
+
+# Start Plex service
+sudo systemctl start plexmediaserver
+sudo systemctl enable plexmediaserver
+
+echo "Plex Media Server installation complete."
+echo "Access the Plex Web UI at http://:32400/web"
diff --git a/tutorials/media-manager/scripts/shell/install-qbittorrent.sh b/tutorials/media-manager/scripts/shell/install-qbittorrent.sh
new file mode 100644
index 0000000..40a344d
--- /dev/null
+++ b/tutorials/media-manager/scripts/shell/install-qbittorrent.sh
@@ -0,0 +1,44 @@
+#!/bin/bash
+
+# Update and upgrade system packages
+echo "Updating system packages..."
+sudo apt update
+sudo apt full-upgrade -y
+
+# Install qbittorrent-nox (headless version)
+echo "Installing qBittorrent-nox..."
+sudo apt install -y qbittorrent-nox
+
+# Create a system user for qBittorrent (optional but recommended)
+echo "Creating qBittorrent user..."
+sudo useradd -r -m qbt
+
+# Add your normal user (pi) to the qbt group to access downloaded files
+sudo usermod -a -G qbt $USER
+
+# Create systemd service file for qBittorrent
+echo "Creating systemd service file..."
+sudo tee /etc/systemd/system/qbittorrent-nox.service > /dev/null <:8080"
+echo "Default credentials: username: admin, password: adminadmin"
+echo "It's highly recommended to change the default login credentials in the Web UI."
diff --git a/tutorials/media-manager/scripts/shell/install-samba.sh b/tutorials/media-manager/scripts/shell/install-samba.sh
new file mode 100644
index 0000000..adfba40
--- /dev/null
+++ b/tutorials/media-manager/scripts/shell/install-samba.sh
@@ -0,0 +1,99 @@
+#!/bin/bash
+set -e
+
+# =====================================================================
+# ✠ In the Name of the Omnissiah ✠
+# Rite of Network Sanctification
+# This script forges SMB daemons to guard the sacred data vaults.
+# Let no heresy dwell within these parameters.
+# =====================================================================
+
+# === CONFIGURATION SIGILS ===
+USER="aetos" # Bearer of the Emperor's Sigil
+SHARES=(
+ "/mnt/omnissiah-vault:Omnissiah-Vault" # 7.3TB Holy Vault of Media Relics
+ "/mnt/machine-spirit:Machine-Spirit" # 931GB Machine Spirit for DBs
+)
+
+# === INSTALLATION OF HOLY DAEMONS ===
+echo "[*] Installing Samba daemons — awaken smbd & nmbd..."
+if command -v apt >/dev/null 2>&1; then
+ sudo apt update
+ sudo apt install -y samba
+elif command -v dnf >/dev/null 2>&1; then
+ sudo dnf install -y samba
+else
+ echo "Unsupported package manager. Manual rites required."
+ exit 1
+fi
+
+# === CONSECRATION OF STORAGE SHRINES ===
+echo "[*] Consecrating vault directories for Emperor’s work..."
+for entry in "${SHARES[@]}"; do
+ DIR="${entry%%:*}"
+ sudo mkdir -p "$DIR"
+ sudo chown -R "$USER:$USER" "$DIR"
+done
+
+# === SMB.CONF SCRIPTURES ===
+echo "[*] Backing up smb.conf — preserve the old texts of Mars..."
+sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak.$(date +%F-%H%M%S)
+
+# Purge traces of past heresies (incorrect configs)
+sudo sed -i '/# Omnissiah Vault/,/^\[/d' /etc/samba/smb.conf || true
+sudo sed -i '/# Machine Spirit/,/^\[/d' /etc/samba/smb.conf || true
+
+# Inscribe new holy shares into smb.conf
+for entry in "${SHARES[@]}"; do
+ DIR="${entry%%:*}"
+ NAME="${entry##*:}"
+
+ sudo tee -a /etc/samba/smb.conf >/dev/null </dev/null 2>&1; then
+ sudo ufw allow samba
+elif command -v firewall-cmd >/dev/null 2>&1; then
+ sudo firewall-cmd --permanent --add-service=samba
+ sudo firewall-cmd --reload
+else
+ echo "[!] No firewall rites detected — proceed with caution, Acolyte."
+fi
+
+# === FINAL BLESSING ===
+echo "[*] Network sanctification complete!"
+echo "Invoke thus from clients:"
+echo " smb:///Omnissiah-Vault"
+echo " smb:///Machine-Spirit"
+echo
+echo "✠ May the Emperor and the Omnissiah guard these shares. ✠"
diff --git a/tutorials/media-manager/scripts/shell/setup-mount-points/ext4.sh b/tutorials/media-manager/scripts/shell/setup-mount-points/ext4.sh
new file mode 100644
index 0000000..e349471
--- /dev/null
+++ b/tutorials/media-manager/scripts/shell/setup-mount-points/ext4.sh
@@ -0,0 +1,128 @@
+#!/bin/bash
+
+# Sacred EXT4 Drive Mounting Ritual for the Raspberry Pi Shrine
+# May the Omnissiah bless this automaton script
+# For the Emperor and the Machine God!
+
+echo "=========================================="
+echo " SACRED DRIVE MOUNTING RITUAL INITIATED "
+echo " In the name of the Omnissiah we bind "
+echo " the Machine Spirits to our will "
+echo "=========================================="
+echo
+
+# Check if running as root
+if [ "$EUID" -ne 0 ]; then
+ echo "ERROR: This sacred ritual requires root privileges!"
+ echo "Execute with: sudo bash bind-machine-spirits.sh"
+ exit 1
+fi
+
+echo "🔱 Phase 1: Invoking the Machine Spirit's blessing..."
+sleep 1
+
+echo "🛠️ Phase 2: Creating sacred mount point..."
+
+# Mount path
+MOUNT_PATH="/mnt/omnissiah-vault"
+mkdir -p "$MOUNT_PATH"
+
+# User for directory ownership
+AETOS_UID=$(id -u aetos)
+AETOS_GID=$(id -g aetos)
+
+chown $AETOS_UID:$AETOS_GID "$MOUNT_PATH"
+
+echo "✅ Sacred directory created:"
+echo " 🗂️ $MOUNT_PATH"
+echo
+
+echo "💾 Phase 3: Backing up the sacred fstab codex..."
+
+BACKUP_PATH="/etc/fstab.backup.$(date +%Y%m%d_%H%M%S)"
+cp /etc/fstab "$BACKUP_PATH"
+echo "✅ Backup created: $BACKUP_PATH"
+echo
+
+echo "📜 Phase 4: Inscribing the binding runes into fstab..."
+
+# EXT4 UUID (CHANGE THIS!)
+VAULT_UUID="REPLACE_WITH_EXT4_UUID"
+
+echo "🔍 Divine revelation of user identities:"
+echo " aetos UID: $AETOS_UID"
+echo " aetos GID: $AETOS_GID"
+
+# Check if fstab already contains the binding
+if grep -q "omnissiah-vault" /etc/fstab; then
+ echo "⚠️ WARNING: Sacred binding already found in /etc/fstab!"
+ echo " Avoiding duplicate entries to prevent corruption..."
+else
+ cat >> /etc/fstab << EOF
+
+# Sacred Drive Binding - Blessed by the Omnissiah
+# Omnissiah's Vault - EXT4 Media Storage
+UUID=${VAULT_UUID} /mnt/omnissiah-vault ext4 defaults,nofail,x-systemd.automount,x-systemd.device-timeout=30s 0 2
+
+EOF
+ echo "✅ Sacred EXT4 binding inscribed successfully!"
+fi
+
+echo "⚡ Phase 5: Awakening the Machine Spirit..."
+
+echo "🔄 Reloading systemd daemon..."
+systemctl daemon-reload
+
+# Test mount
+if mount -a; then
+ echo "✅ The Machine Spirit of Omnissiah's Vault has awakened!"
+else
+ echo "❌ ERROR: The Machine Spirit refuses binding!"
+ echo " Consult the sacred logs for heretical anomalies..."
+ exit 1
+fi
+
+echo
+echo "🔍 Phase 6: Verifying the sacred binding..."
+
+echo "Current mount status:"
+df -h | grep -E "omnissiah-vault" || echo " The Vault has not yet manifested in the material realm..."
+
+echo
+echo "📁 Phase 7: Blessing the directory structure..."
+
+if mountpoint -q "$MOUNT_PATH"; then
+ mkdir -p $MOUNT_PATH/{movies,tv-shows,documentaries,archives,media,downloads,configs}
+ chown -R $AETOS_UID:$AETOS_GID $MOUNT_PATH
+ echo "✅ Directory structure blessed by the Omnissiah"
+else
+ echo "❌ ERROR: Omnissiah's Vault is not mounted. Structure blessing aborted."
+fi
+
+echo
+echo "=========================================="
+echo " SACRED RITUAL COMPLETED! "
+echo "=========================================="
+echo "🔱 The Machine Spirit is bound!"
+echo "🗂️ Vault Path: $MOUNT_PATH"
+echo
+echo "The Emperor protects your data!"
+echo "May your storage serve the Imperium well!"
+echo "=========================================="
+
+echo
+echo "🔧 Final Systems Check:"
+echo "Mounted filesystems:"
+mount | grep "omnissiah-vault" | sed 's/^/ /'
+
+echo
+echo "Storage capacity report:"
+df -h | grep "omnissiah-vault" | sed 's/^/ /'
+
+echo
+echo "Directory permissions:"
+ls -la /mnt/ | grep "omnissiah-vault" | sed 's/^/ /'
+
+echo
+echo "🎉 Ritual complete! Reboot to test automatic mounting."
+echo " To verify: sudo reboot && df -h"
diff --git a/tutorials/media-manager/scripts/shell/setup-mount-points/ntfs.sh b/tutorials/media-manager/scripts/shell/setup-mount-points/ntfs.sh
new file mode 100644
index 0000000..0dd42c4
--- /dev/null
+++ b/tutorials/media-manager/scripts/shell/setup-mount-points/ntfs.sh
@@ -0,0 +1,136 @@
+#!/bin/bash
+
+# Sacred Drive Mounting Ritual for the Raspberry Pi Shrine
+# May the Omnissiah bless this automaton script
+# For the Emperor and the Machine God!
+
+echo "=========================================="
+echo " SACRED DRIVE MOUNTING RITUAL INITIATED "
+echo " In the name of the Omnissiah we bind "
+echo " the Machine Spirits to our will "
+echo "=========================================="
+echo
+
+# Check if running as root
+if [ "$EUID" -ne 0 ]; then
+ echo "ERROR: This sacred ritual requires root privileges!"
+ echo "Execute with: sudo bash bind-machine-spirits.sh"
+ exit 1
+fi
+
+echo "🔱 Phase 1: Invoking the Machine Spirit's blessing..."
+sleep 1
+
+# Install NTFS support if missing
+echo "📦 Ensuring NTFS-3G drivers are blessed by the Omnissiah..."
+apt update -qq
+apt install -y ntfs-3g
+
+echo "🛠️ Phase 2: Creating sacred mount point..."
+
+# Create mount directory
+mkdir -p /mnt/omnissiah-vault
+
+# Get dynamic user ID/GID for the aetos user
+AETOS_UID=$(id -u aetos)
+AETOS_GID=$(id -g aetos)
+
+# Assign ownership
+chown $AETOS_UID:$AETOS_GID /mnt/omnissiah-vault
+
+echo "✅ Sacred directory created:"
+echo " 🗂️ /mnt/omnissiah-vault (the great data hoard)"
+echo
+
+echo "💾 Phase 3: Backing up the sacred fstab codex..."
+
+# Backup fstab
+BACKUP_PATH="/etc/fstab.backup.$(date +%Y%m%d_%H%M%S)"
+cp /etc/fstab "$BACKUP_PATH"
+echo "✅ Backup created: $BACKUP_PATH"
+echo
+
+echo "📜 Phase 4: Inscribing the binding runes into fstab..."
+
+echo "🔍 Divine revelation of user identities:"
+echo " aetos UID: $AETOS_UID"
+echo " aetos GID: $AETOS_GID"
+
+# Your UUID goes here — update if needed
+VAULT_UUID="C678E33A78E3283F"
+
+# Check existing entries
+if grep -q "omnissiah-vault" /etc/fstab; then
+ echo "⚠️ WARNING: Sacred bindings already detected in fstab!"
+ echo " Skipping fstab modification to prevent corruption..."
+else
+ cat >> /etc/fstab << EOF
+
+# Sacred Drive Binding - Blessed by the Omnissiah
+# Omnissiah's Vault - Mass Storage for Movies & Media
+UUID=${VAULT_UUID} /mnt/omnissiah-vault ntfs-3g defaults,nofail,uid=${AETOS_UID},gid=${AETOS_GID},umask=022,x-systemd.automount,x-systemd.device-timeout=30s 0 0
+
+EOF
+
+ echo "✅ Sacred binding inscribed successfully!"
+fi
+
+echo "⚡ Phase 5: Awakening the Machine Spirit..."
+
+# Reload systemd to acknowledge the sacred changes
+echo "🔄 Reloading systemd daemon..."
+systemctl daemon-reload
+
+# Test mount
+if mount -a; then
+ echo "✅ The Machine Spirit of Omnissiah's Vault has awakened!"
+else
+ echo "❌ ERROR: The Machine Spirit resists binding!"
+ echo " Consult the sacred logs for heretical errors..."
+ exit 1
+fi
+
+echo
+echo "🔍 Phase 6: Verifying the sacred binding..."
+
+echo "Current mount status:"
+df -h | grep -E "omnissiah-vault" || echo " The Vault has not yet manifested in the material realm..."
+
+echo
+echo "📁 Phase 7: Blessing the directory structure..."
+
+if mountpoint -q /mnt/omnissiah-vault; then
+ mkdir -p /mnt/omnissiah-vault/{movies,tv-shows,documentaries,archives,media,downloads,configs}
+ chown -R $AETOS_UID:$AETOS_GID /mnt/omnissiah-vault
+ echo "✅ Omnissiah's Vault directory structure blessed"
+else
+ echo "❌ ERROR: Omnissiah's Vault is not mounted. Cannot bless structure."
+fi
+
+echo
+echo "=========================================="
+echo " SACRED RITUAL COMPLETED! "
+echo "=========================================="
+echo "🔱 The Machine Spirit is bound!"
+echo "🗂️ Vault Path: /mnt/omnissiah-vault"
+echo
+echo "The Emperor protects your data!"
+echo "May your storage serve the Imperium well!"
+echo "=========================================="
+
+echo
+echo "🔧 Final Systems Check:"
+echo "Mounted filesystems:"
+mount | grep "omnissiah-vault" | sed 's/^/ /'
+
+echo
+echo "Storage capacity report:"
+df -h | grep "omnissiah-vault" | sed 's/^/ /'
+
+echo
+echo "Directory permissions:"
+ls -la /mnt/ | grep "omnissiah-vault" | sed 's/^/ /'
+
+echo
+echo "🎉 Ritual complete! Reboot to test automatic mounting."
+echo " To verify: sudo reboot && df -h"
diff --git a/tutorials/media-manager/steps/install-docker.md b/tutorials/media-manager/steps/install-docker.md
new file mode 100644
index 0000000..7af1ccc
--- /dev/null
+++ b/tutorials/media-manager/steps/install-docker.md
@@ -0,0 +1,172 @@
+# Installing Docker — What It Is, How It Works, and Why We Use It
+
+Before installing Docker, it’s important to understand **what Docker actually does**, **how it fits into our media management setup**, and **why we run only the ARR stack inside Docker** while keeping **qBittorrent and Plex on the host system**.
+
+This page will walk you through all of that in simple, practical terms.
+
+---
+
+# 🐳 What Is Docker?
+
+Docker is a **containerization platform**.
+
+That means:
+
+### Docker lets you run applications in small, isolated environments called **containers**.
+
+A container:
+
+- has its own filesystem
+- has its own dependencies
+- has its own libraries
+- cannot interfere with your main system
+- can be destroyed and recreated easily
+
+Think of it like:
+
+> **A lightweight, specialized mini-computer for one application.**
+
+This makes apps more predictable, easier to upgrade, and easier to manage.
+
+---
+
+# 🔧 Why Use Docker?
+
+### ✔ Avoid dependency conflicts
+Containers ship the libraries the app needs, so you don’t pollute your main OS.
+
+### ✔ Easy to update
+Updating Radarr/Sonarr/Prowlarr becomes:
+
+```
+docker compose pull
+docker compose up -d
+```
+
+### ✔ Easy to back up
+ARR services store their config in a small folder you can snapshot.
+
+### ✔ Perfect for things that change often
+Indexers break, Prowlarr updates, Radarr adds features — Docker makes it painless.
+
+---
+
+# 🚫 Why Not Put Everything in Docker?
+
+You *can* put everything in Docker, but in a real-world Raspberry Pi / home-server environment, some apps **behave badly** or **have limitations** inside containers.
+
+Below is the reasoning for each major component.
+
+---
+
+# ❌ Why qBittorrent Is NOT in Docker
+
+### qBittorrent needs:
+- fine-grained permission control
+- direct disk access
+- stable file paths
+- high-speed I/O for torrent hashing
+- ability to handle sudden restarts and disk states
+
+Inside Docker, qBit often has problems:
+
+| Problem | Why It Happens |
+|--------|----------------|
+| Slow hashing | Docker’s overlay filesystem adds overhead |
+| Permission issues | Containers struggle with mixed UID/GID + bind mounts |
+| Inconsistent paths | qBit expects real Linux paths for completed downloads |
+| Harder integration | Radarr/Sonarr sometimes misread container-mapped paths |
+
+### 🧠 Therefore:
+**qBittorrent on the host is cleaner, faster, and more stable.**
+
+---
+
+# ❌ Why Plex Is NOT in Docker
+
+This is even more important.
+
+### Plex inside Docker struggles with:
+
+| Feature | Issue in Docker |
+|--------|-----------------|
+| **Hardware transcoding (VAAPI/V4L2/QuickSync)** | Often broken or requires special setup |
+| **Direct I/O from large libraries** | Docker overlay adds slowdowns |
+| **Automatic network discovery** | Plex uses multicast/IGMP which Docker isolates |
+| **Large metadata directories** | Docker containers don’t like millions of tiny files |
+
+Plex has a massive, constantly evolving I/O profile and **performs best on bare metal** (host).
+
+### 🧠 Therefore:
+**Install Plex directly on the host for speed, compatibility, and transcoding support.**
+
+---
+
+# 🟩 Why the ARR Stack *Is* in Docker
+
+Radarr, Sonarr, and Prowlarr:
+
+- are lightweight
+- use clean, simple paths
+- store configuration in manageable folders
+- benefit from frequent updates
+- rarely need hardware access
+- behave very predictably in containers
+
+They’re practically **designed to live inside Docker**.
+
+### ✔ Consistent paths
+As long as `/mnt/omnissiah-vault` is mounted, containers have zero issues.
+
+### ✔ Easy migrations
+Moving to a new server is as simple as:
+
+```
+copy configs → run docker-compose → done
+```
+
+### ✔ Better isolation
+If Radarr breaks from an update, it won’t affect Plex or qBit.
+
+---
+
+# 🧱 Summary — The Architecture Philosophy
+
+| Component | Host or Docker? | Reason |
+|----------|------------------|---------|
+| **Docker Engine** | Host | Foundation layer |
+| **ARR Stack (Radarr / Sonarr / Prowlarr / Bazarr)** | Docker | Best candidates for containers |
+| **qBittorrent** | Host | Needs stable I/O + real filesystem access |
+| **Plex** | Host | Needs hardware transcoding + network discovery |
+
+This hybrid approach gives us the **best combination of performance, stability, and maintainability**.
+
+---
+
+# 🧰 Installing Docker (Raspberry Pi / Linux)
+
+Here is the installation script referenced in the flow:
+
+### 📥 Download Script
+👉 **[install-docker.sh](../scripts/shell/install-docker.sh)**
+
+### 🖥️ What the script does
+- updates the system
+- removes conflicting old packages
+- installs Docker using the official convenience script
+- installs Docker Compose
+- adds your user to the docker group
+- enables and starts the Docker service
+- verifies installation
+
+After running it:
+
+```bash
+sudo reboot
+```
+Your system will be ready to run containerized ARR services.
+
+# 🚀 Next Step: Configure Plex (Host Installation)
+Once Docker is installed, we move forward with:
+👉 Install Plex (steps/install-plex.md)
+This ensures the server is ready to serve media once the ARR stack begins populating it.
diff --git a/tutorials/media-manager/steps/install-plex.md b/tutorials/media-manager/steps/install-plex.md
new file mode 100644
index 0000000..a68b5e0
--- /dev/null
+++ b/tutorials/media-manager/steps/install-plex.md
@@ -0,0 +1,124 @@
+# Installing Plex Media Server
+
+Plex is the heart of your media ecosystem. It scans your library, fetches metadata, organizes everything neatly, and makes your movies and shows available to stream from anywhere. Installing Plex is straightforward, but **where you store its configuration and metadata** is extremely important.
+
+This guide explains:
+
+* What Plex is and how it works
+* Why it should *not* run inside Docker in this setup
+* Why its configuration directory must be placed on your external HDD
+* What gets stored there and how large it can grow
+* The installation script used to set everything up
+
+---
+
+# 🎬 What Is Plex?
+
+Plex Media Server is an application that:
+
+* Indexes your media library
+* Fetches rich metadata (posters, backgrounds, cast info, themes)
+* Streams your content to TVs, phones, tablets, and browsers
+* Transcodes media when needed
+* Manages user accounts, watch history, and recommendations
+
+Plex is extremely powerful — but with that power comes heavy disk usage.
+
+---
+
+# 🧱 Why Plex Runs *Outside* Docker
+
+Although Docker is fantastic for the ARR stack, Plex is more demanding and behaves better on the **host system**.
+
+Running Plex in Docker often introduces problems:
+
+| Issue | Why It Happens in Docker |
+| ------------------------------------ | -------------------------------------------------------- |
+| **Hardware transcoding failures** | Containerization interferes with VAAPI/V4L2/QuickSync |
+| **Slow scanning of large libraries** | Docker's overlay filesystem slows metadata I/O |
+| **Network discovery issues** | Plex requires multicast/IGMP, blocked by Docker networks |
+| **Large metadata directory** | Containers struggle with millions of tiny files |
+
+Real-world experience proves Plex performs best when installed directly on the OS.
+
+---
+
+# 🗃️ Why Move Plex Metadata to an External HDD?
+
+Plex stores a massive amount of metadata — often **tens or hundreds of gigabytes** depending on library size.
+
+Here’s what Plex stores inside its config directory:
+
+* Posters & artwork
+* Backdrops
+* Theme music
+* Subtitles
+* Optimization cache
+* Transcoding cache
+* Databases for:
+
+ * Libraries
+ * Watch history
+ * Video analysis
+ * Intro detection
+
+These files grow quickly.
+
+## 📌 Example Metadata Sizes
+
+* Small library (500 files): **5–10 GB**
+* Medium library (2,000 files): **20–50 GB**
+* Large library (10,000+ files): **100 GB+**
+
+If you keep this in `/var/lib/plexmediaserver` on the SD card or system SSD:
+
+* The OS disk will fill up
+* SD cards will wear out quickly
+* Plex performance will suffer severely
+
+### ✔ Placing metadata on your external HDD solves everything
+
+* Massive storage availability
+* Higher endurance than SD cards
+* Faster scanning and caching
+* No risk of filling the root filesystem
+
+This is why we relocate Plex config to:
+
+```
+/mnt/omnissiah-vault/configs/plex
+```
+
+---
+
+# ⚙️ Installation Script
+
+Below is the installation script used for this tutorial. It:
+
+* Installs Plex Media Server from the official repository
+* Stops the service
+* Moves its entire metadata/config directory to your mounted HDD
+* Creates a symlink so Plex still sees the expected path
+* Ensures correct ownership for the `plex` user
+* Restarts and enables the service
+* 📥 Download Script
+👉 **[install-docker.sh](../scripts/shell/install-plex.sh)**
+
+---
+
+# 🚀 After Installation
+
+Once Plex is installed and its metadata moved to your external drive, you can:
+
+* Open the Web UI
+* Sign in with your Plex account
+* Add your libraries from `/mnt/omnissiah-vault/media`
+* Run a full scan
+
+Everything moving forward — including posters, metadata, intro detection, and caching — will stay safely on the external HDD.
+
+---
+
+# ➡️ Next Step
+
+Proceed to **Install qBittorrent** to complete the host-based components.
diff --git a/tutorials/media-manager/steps/install-qbittorrent.md b/tutorials/media-manager/steps/install-qbittorrent.md
new file mode 100644
index 0000000..a25f452
--- /dev/null
+++ b/tutorials/media-manager/steps/install-qbittorrent.md
@@ -0,0 +1,134 @@
+# Installing qBittorrent (Host Installation)
+
+qBittorrent is the download engine of your media automation setup. It handles all torrent activity triggered by Radarr, Sonarr, and Prowlarr. Installing it on the **host system** (not Docker) ensures optimal speed, stable paths, and maximum compatibility.
+
+This guide explains:
+
+* What qBittorrent does in the media pipeline
+* Why it should *not* run inside Docker in a real-world Pi/home server setup
+* Why its configuration does **not** need to be moved to your external drive
+* The installation script used to install and run qBittorrent as a systemd service
+
+---
+
+# 🌀 What Is qBittorrent?
+
+qBittorrent is an open‑source torrent client with:
+
+* A lightweight Web UI
+* Fast download engine
+* Built-in category and tagging support
+* Excellent integration with Radarr & Sonarr
+* Very low resource usage
+
+It acts as the **download worker** for the entire Media Manager.
+
+When Radarr/Sonarr find a new movie or episode, they send the torrent to qBittorrent. When the download completes, ARR handles renaming and moving the file.
+
+---
+
+# ❌ Why qBittorrent Should NOT Run in Docker
+
+Although qBittorrent *can* run in Docker, it performs **significantly worse** and causes practical issues when used on low-power servers like Raspberry Pi.
+
+Here’s why.
+
+## 🐌 1. Docker slows down torrent hashing
+
+qBit must:
+
+* Hash large files
+* Verify blocks
+* Manage partial pieces
+
+Docker overlays add filesystem overhead → hashing becomes slower → CPU usage increases.
+
+## 🔐 2. Permissions become messy
+
+Inside Docker:
+
+* Download paths are bind-mounted
+* UID/GID mapping becomes inconsistent
+* Sonarr/Radarr sometimes cannot see or import completed downloads
+
+On the host:
+
+* Files are native
+* Permissions are predictable
+* ARR integration is flawless
+
+## 📁 3. Real file paths are required for stability
+
+qBit expects stable, real Linux paths like:
+
+```
+/mnt/omnissiah-vault/downloads
+```
+
+Containers often abstract or rewrite these, confusing ARR.
+
+## 🚀 4. Performance is dramatically better on the host
+
+Download speed, disk writes, and hashing are all faster without Docker.
+
+### ✔ Therefore:
+
+**qBittorrent belongs on the host system for maximum stability and speed.**
+
+---
+
+# 📦 Why qBittorrent Config Does NOT Go on the External HDD
+
+Unlike Plex—which can generate **tens of gigabytes** of metadata—qBittorrent stores only:
+
+* a few small configuration files
+* a few `.fastresume` entries
+* a small database of torrents
+
+Typical qBit config directory size:
+
+* 2–20 MB
+
+It does **not** grow with your media library.
+
+### ✔ Keeping qBit on the internal OS disk is safe and recommended.
+
+---
+
+# ⚙️ Installation Script (Systemd Service)
+
+The script below installs qBittorrent‑nox and configures it to run as a background service.
+* 📥 Download Script
+👉 **[install-docker.sh](../scripts/shell/install-qbittorrent.sh)**
+---
+
+# 🚀 After Installation
+
+Visit:
+
+```
+http://:8080
+```
+
+Default credentials:
+
+```
+username: admin
+password: adminadmin
+```
+
+You *must* change the password on first login.
+
+Next steps:
+
+* Configure download paths
+* Add categories (`movies`, `tv`, etc.)
+* Disable torrenting features you don’t need
+
+ARR integration happens after the Docker portion is set up.
+
+---
+
+# ➡️ Next Step
+
+Proceed to the **ARR Stack setup (Docker Compose)** to handle automation.
diff --git a/tutorials/media-manager/steps/install-samba.md b/tutorials/media-manager/steps/install-samba.md
new file mode 100644
index 0000000..adef844
--- /dev/null
+++ b/tutorials/media-manager/steps/install-samba.md
@@ -0,0 +1,164 @@
+# Optional: Installing Samba for Windows Network Access
+
+Samba is **optional** in this Media Manager setup, but highly recommended if:
+
+* You use **Windows** and want to browse your media files easily
+* You want to manually adjust or inspect downloaded files
+* You want to drag-and-drop subtitles, rename files, or fix issues directly
+* You want the flexibility of mounting your media as a network drive
+
+If you only ever access files through Plex, ARR apps, or the Linux shell, then Samba is **not required**.
+
+---
+
+# 🧩 Why Samba Might Be Needed
+
+Although Radarr, Sonarr, and Bazarr automate nearly everything, there are situations where **manual file access** is useful:
+
+* Fixing incorrectly tagged files
+* Manual subtitle adjustments
+* Deleting or replacing corrupted media
+* Organizing large folders
+* Backing up media manually
+
+On **Linux or macOS**, this can be done easily over SSH.
+
+On **Windows**, the easiest way is via **Samba (SMB)** network shares.
+
+---
+
+# 💠 What Samba Does
+
+Samba exposes directories on your Raspberry Pi/Linux server as Windows-compatible network drives.
+
+It allows you to access:
+
+```
+/mnt/omnissiah-vault
+```
+
+from Windows like:
+
+```
+Z:\ → Omnissiah-Vault
+```
+
+This behaves like a native Windows drive:
+
+* You can open files
+* Copy folders
+* Delete/rename items
+* Perform maintenance tasks
+
+---
+
+# 📦 Installation Script (Optional)
+
+If you want Samba on your server, use the following script:
+
+👉 **see script:** `scripts/install-samba.sh`
+
+This script:
+
+* Installs Samba
+* Shares your mounted directories
+* Secures access to your user only (no guest access)
+* Creates Samba credentials
+* Enables the smbd/nmbd daemons
+
+---
+
+# 🖥️ Windows Setup — Mapping the Network Drive
+
+Once Samba is active, you can connect from Windows.
+
+### 1. Open File Explorer
+
+Press:
+
+```
+Win + E
+```
+
+### 2. Click **This PC**
+
+### 3. Click **Map network drive** in the top ribbon
+
+(If hidden, click the three-dot menu.)
+
+### 4. Choose a drive letter
+
+Example:
+
+```
+Z:
+```
+
+### 5. In the folder field, enter your Samba share
+
+```
+\\\Omnissiah-Vault
+```
+
+Example:
+
+```
+\\192.168.1.50\Omnissiah-Vault
+```
+
+### 6. Check **Reconnect at sign-in**
+
+So Windows auto-remounts the drive.
+
+### 7. Check **Connect using different credentials**
+
+Enter the username and password created during Samba setup:
+
+```
+Username: aetos
+Password:
+```
+
+Click **Finish**.
+
+You should now see the drive appear in Explorer like a normal disk.
+
+---
+
+# 🧰 You Can Also Map via Command Line
+
+Open PowerShell and run:
+
+```
+net use Z: \\\Omnissiah-Vault /user:aetos
+```
+
+---
+
+# 🔐 Security Notes
+
+* Samba exposes your filesystem over the network → keep your password strong.
+* Never enable `guest ok = yes` unless you want an open share.
+* Use UFW or firewall-cmd to restrict access if needed.
+
+---
+
+# 📝 Summary
+
+Samba is optional but extremely convenient, especially for Windows users.
+
+Use it if:
+
+* You manage files manually
+* You want drag-and-drop access to media
+* You want Windows Explorer to treat the server like a normal drive
+
+Skip it if:
+
+* Everything happens via automation
+* You only use Plex and ARR
+* You manage your server exclusively from Linux/Mac
+
+---
+
+Proceed to the next step when ready.
diff --git a/tutorials/media-manager/steps/overview.md b/tutorials/media-manager/steps/overview.md
new file mode 100644
index 0000000..88be6f8
--- /dev/null
+++ b/tutorials/media-manager/steps/overview.md
@@ -0,0 +1,130 @@
+# Overview
+
+This page tells the story of what will happen during the Media Manager setup: a clear, step-by-step timeline of actions, goals, and outcomes. Think of it as the "mission plan" — what we do, why we do it, and what success looks like at each stage.
+
+---
+
+## The goal
+
+We'll transform a single Linux host (example: a Raspberry Pi) into a dependable, mostly-automated media management server that:
+
+* Downloads TV shows and movies automatically via qBittorrent
+* Uses the ARR stack (Radarr, Sonarr, Prowlarr, Bazarr) to find and manage media
+* Organizes and moves completed downloads into a structured media library
+* Serves your media using Plex Media Server
+* Runs ARR services in Docker for portability and ease of upgrades
+
+---
+
+## High-level architecture
+
+* **Host OS**: Linux (Raspberry Pi OS / Ubuntu Server)
+* **Host services**: Docker (engine) + Plex + qBittorrent (native host installs)
+* **Containerized services** (docker-compose): Radarr, Sonarr, Prowlarr, Bazarr, and any auxiliary containers (e.g., file indexers, notifications)
+* **Storage layout**: downloaded files land in `/mnt/downloads`; completed and organized media live in `/mnt/media`; service configurations in `/mnt/config`
+
+---
+
+## Step-by-step timeline (what will happen)
+
+Each step below explains the action, the reason, and the expected result.
+
+### 1) Validate base system
+
+**Action:** Confirm OS, update packages, set hostname, timezone, and networking.
+**Why:** Ensures reproducible behavior, correct timestamps, and easier network access.
+**Result:** A stable host with SSH enabled and a predictable IP/hostname.
+
+---
+
+### 2) Prepare and mount storage
+
+**Action:** Attach external drives (HDD/SSD or network share), create filesystems if needed, and mount them persistently (e.g., `/etc/fstab`). Create top-level folders:
+
+```
+/mnt/media
+/mnt/downloads
+/mnt/config
+```
+
+**Why:** Separates volatile system disk from large media storage and config data; makes backups and maintenance easier.
+**Result:** Durable storage locations that all services will reference.
+
+---
+
+### 3) Install Docker on the host
+
+**Action:** Install Docker Engine and docker-compose (or use `docker compose` plugin).
+**Why:** ARR services are containerized for isolation, portability, and simplified updates.
+**Result:** Host ready to run docker-compose stacks.
+
+---
+
+### 4) Install Plex on the host
+
+**Action:** Install Plex Media Server as a host service (native install or package). Configure initial library paths and remote access as needed.
+**Why:** Plex performs heavy I/O and benefits from being on the host where hardware acceleration and direct disk access are easier to configure.
+**Result:** Plex server visible on the network and ready to index `/mnt/media`.
+
+---
+
+### 5) Install qBittorrent on the host
+
+**Action:** Install and configure qBittorrent (preferably `qbittorrent-nox` for headless use). Set download paths to `/mnt/downloads`. Configure a web UI and credentials.
+**Why:** Torrent client handles downloads; being on the host simplifies mounting and permissions.
+**Result:** qBittorrent runs as a service, accepting search/download requests from ARR services.
+
+---
+
+### 6) Deploy ARR Stack via docker-compose
+
+**Action:** Create a `docker-compose.yml` to run Radarr, Sonarr, Prowlarr, Bazarr (and optional services like bazarr, jackett if needed). Mount config and media/downloads into containers.
+**Why:** Containers give predictable runtime environments and make upgrades simple.
+**Result:** ARR services running and reachable on defined ports (e.g., `:7878` for Radarr, `:8989` for Sonarr).
+
+---
+
+### 7) Integrate ARR with qBittorrent and Plex
+
+**Action:** In Radarr/Sonarr, add qBittorrent as the download client and Plex for library updates. Configure Prowlarr as the indexer aggregator and link it to Sonarr/Radarr.
+**Why:** This creates an automated chain: indexers → ARR → torrent client → completed move → Plex scan.
+**Result:** A working automation pipeline where new media requests result in downloaded, organized, and indexed media.
+
+---
+
+### 8) Configure media organization and quality profiles
+
+**Action:** Create library structures (Movies, TV), set naming formats, define quality profiles and root folders in Radarr and Sonarr.
+**Why:** Ensures consistent file naming, reduces duplicates, and keeps libraries tidy for Plex.
+**Result:** Downloads are renamed and moved automatically into `/mnt/media/Movies` and `/mnt/media/TV`.
+
+---
+
+### 9) Verify and test end-to-end flow
+
+**Action:** Manually request a test show or movie in Sonarr/Radarr, verify it appears in qBittorrent, completes, is moved, and shows up in Plex.
+**Why:** Confirms the full automation loop works and surfaces permission or path issues.
+**Result:** Confirmed working pipeline.
+
+---
+
+### 10) Backup, maintenance, and monitoring
+
+**Action:** Implement config backups (snapshot `/mnt/config`), schedule regular system updates, and optionally add monitoring (Prometheus/Grafana or simple scripts).
+**Why:** Protects against data loss and keeps services healthy.
+**Result:** Resilient installation with a recovery plan.
+
+---
+
+## Success Criteria — How you’ll know it’s working
+
+* You can add a movie/show to Radarr/Sonarr and see it downloaded automatically.
+* Downloaded files are renamed and relocated to `/mnt/media`.
+* Plex detects new content and makes it available for streaming.
+* Services restart correctly after a reboot and maintain configuration.
+
+---
+
+## Next steps
+
+Proceed to the **Setup Mount Points** step to prepare storage paths and permissions: `steps/setup-mount-points.md`.
diff --git a/tutorials/media-manager/steps/setup-media-manager.md b/tutorials/media-manager/steps/setup-media-manager.md
new file mode 100644
index 0000000..93115ef
--- /dev/null
+++ b/tutorials/media-manager/steps/setup-media-manager.md
@@ -0,0 +1,268 @@
+# ARR Stack Overview and Service Architecture
+
+This section explains all the applications included in your Media Manager stack, what each one does, how they interact with each other, and how the storage mount points are shared across services.
+
+The stack is deployed using a **Docker Compose file**. Instead of pasting the compose inline here, it is referenced directly:
+
+👉 **See the Docker Compose configuration:** `docker-compose.yml`
+
+---
+
+# 🌐 The ARR Ecosystem — What Each App Does
+
+Your media automation pipeline consists of several specialized services. Each one has a dedicated role, and together they form a complete end‑to‑end system.
+
+Below is a clear breakdown.
+
+---
+
+## 🧭 Prowlarr — The Indexer Aggregator
+
+Prowlarr acts as the central hub for all indexers (public, private, torrent, NZB).
+
+**Responsibilities:**
+
+* Connects to multiple indexers
+* Provides unified indexer results to Radarr & Sonarr
+* Manages API keys, categories, indexer syncing
+
+**Why it’s important:**
+Without Prowlarr, you would configure indexers separately in each application — a massive duplication of work.
+
+**How it talks to others:**
+
+* Sends torrent results → Radarr/Sonarr
+* Receives indexer categories from them
+
+---
+
+## 🎬 Radarr — Automated Movie Management
+
+Radarr handles **movie** automation.
+
+**Responsibilities:**
+
+* Monitor movie requests
+* Fetch releases from indexers via Prowlarr
+* Trigger downloads via qBittorrent
+* Rename, sort, and move completed files into the Movies directory
+* Update Plex libraries
+
+**How it talks to others:**
+
+* Index results from Prowlarr
+* Sends download requests to qBittorrent
+* Notifies Plex to refresh libraries
+* Provides subtitles to Bazarr (optional)
+
+---
+
+## 📺 Sonarr — Automated TV Show Management
+
+Sonarr is the TV equivalent of Radarr.
+
+**Responsibilities:**
+
+* Track TV episodes (past and future)
+* Upgrade quality automatically
+* Send downloads to qBittorrent
+* Rename and organize episodes
+
+**How it talks to others:**
+
+* Index results from Prowlarr
+* Send downloads to qBittorrent
+* Sync subtitle requests with Bazarr
+
+---
+
+## 💬 Bazarr — Subtitle Management Service
+
+Bazarr automatically finds and downloads subtitles.
+
+**Responsibilities:**
+
+* Sync with Radarr and Sonarr
+* Fetch subtitles in desired languages
+* Store subtitles next to their respective media files
+
+**How it talks to others:**
+
+* Reads Radarr/Sonarr libraries
+* Writes subtitle files directly inside `/data/media/...`
+
+---
+
+## 🎟️ Jellyseerr — Request Management Portal
+
+Jellyseerr is the user-facing request dashboard.
+
+**Responsibilities:**
+
+* Users request movies or shows
+* Requests are forwarded automatically to Radarr/Sonarr
+* Designed for multi-user setups
+
+**How it talks to others:**
+
+* Communicates with Radarr/Sonarr via API
+* Shows availability status using Plex integration
+
+---
+
+## 📨 Ombi — Alternative Request Management
+
+Ombi is similar to Jellyseerr, with some different UI and features.
+
+**Responsibilities:**
+
+* Allows users to request media
+* Integrates with Radarr and Sonarr
+* Sends notifications
+
+Some prefer Jellyseerr, others prefer Ombi — you can run both.
+
+---
+
+# 🧱 How These Services Are Connected
+
+### Central Flow Diagram (conceptual)
+
+```
+Jellyseerr/Ombi → Radarr/Sonarr ← Prowlarr
+ ↓
+ qBittorrent (host)
+ ↓
+ Organized media library
+ ↓
+ Plex
+ ↓
+ Clients
+```
+
+### Key Points:
+
+* **Prowlarr provides indexer data** to both Radarr and Sonarr
+* **Radarr/Sonarr send download requests** to qBittorrent (host)
+* **qBittorrent stores downloads** into the shared mounted folders
+* **Radarr/Sonarr import, rename, and move** completed media into `/data/media/...`
+* **Plex sees updated libraries** and refreshes
+* **Bazarr fetches subtitles** and writes them next to the media
+
+All Docker apps talk to host apps using:
+
+```
+host.docker.internal:host-gateway
+```
+
+This ensures containers can reach qBittorrent and Plex.
+
+---
+
+# 🗄️ Volume Mount Strategy
+
+All apps share a **standardized mount point** inside containers:
+
+```
+/data
+```
+
+Outside the container, this maps to:
+
+```
+/mnt/omnissiah-vault/data/media-manager
+```
+
+This ensures:
+
+* Radarr, Sonarr, Bazarr all see the **same folder structure**
+* No path translation issues between apps
+* Clean docker-compose configuration
+
+### Example Inside Containers
+
+```
+/data/media/movies
+/data/media/tv
+/data/downloads
+```
+
+---
+
+# 🗂️ Config Directory Mounts
+
+Each service stores its settings inside Docker volumes mapped to persistent directories.
+
+### Radarr
+
+```
+/mnt/omnissiah-vault/configs/radarr → /config
+```
+
+### Sonarr
+
+```
+/mnt/omnissiah-vault/configs/sonarr → /config
+```
+
+### Prowlarr
+
+```
+/mnt/omnissiah-vault/configs/prowlarr → /config
+```
+
+### Bazarr
+
+```
+/mnt/omnissiah-vault/configs/bazarr → /config
+```
+
+### Jellyseerr
+
+```
+/mnt/omnissiah-vault/configs/jellyseerr → /app/config
+```
+
+### Ombi
+
+```
+/mnt/omnissiah-vault/configs/ombi → /config
+```
+
+All containers get persistent configuration that survives updates.
+
+---
+
+# 🔧 Docker Networking
+
+All ARR services join the same Docker network:
+
+```
+media-net
+```
+
+This provides:
+
+* Internal communication
+* Isolated service space
+* Avoids exposing containers unintentionally
+
+---
+
+# 🚀 Summary
+
+Your ARR stack consists of:
+
+* **Prowlarr** for indexers
+* **Sonarr** for TV
+* **Radarr** for movies
+* **Bazarr** for subtitles
+* **Jellyseerr or Ombi** for request management
+
+They connect using APIs, communicate through a private Docker network, and share a unified `/data` folder that maps to your mounted storage.
+
+This architecture keeps everything predictable, reproducible, and easy to maintain.
+
+---
+
+Next: Proceed to configure each service inside their Web UIs.
diff --git a/tutorials/media-manager/steps/setup-mount-points.md b/tutorials/media-manager/steps/setup-mount-points.md
new file mode 100644
index 0000000..78d6c01
--- /dev/null
+++ b/tutorials/media-manager/steps/setup-mount-points.md
@@ -0,0 +1,156 @@
+# Understanding Mounting, File Systems, and Choosing Between EXT4 vs NTFS
+
+Before we bind our drives and awaken the Machine Spirits, it’s important to understand **what mounting is**, **what file systems are**, and **why we choose EXT4 or NTFS** depending on how the drive will be used.
+
+This page explains everything in simple terms so beginners can follow confidently.
+
+---
+
+## 🧩 What Does “Mounting” Mean?
+
+On Linux, storage devices like HDDs, SSDs, or USB drives **do not automatically appear as folders**.
+Instead, the operating system must *mount* them — meaning:
+
+### **Mounting = attaching a physical drive to a folder on the filesystem.**
+
+For example:
+```
+Device: /dev/sda1
+Mounted at: /mnt/omnissiah-vault
+```
+
+Once mounted:
+
+- The drive becomes accessible through that folder
+- Applications can read/write files there
+- You can organize media, downloads, and configuration data
+
+If the drive is *not mounted*, nothing can access it—even if Linux sees the hardware.
+
+---
+
+## 📘 Why We Use `/mnt/…`
+
+Linux keeps the system organized using conventions:
+
+| Path | Purpose |
+|------|---------|
+| `/home` | User home folders |
+| `/root` | Root account home |
+| `/etc` | System configuration |
+| `/mnt` | Drives mounted by the user/admin |
+
+We follow the Linux standard by mounting drives under:
+```
+/mnt/omnissiah-vault
+```
+
+
+This makes it clear that the drive is external storage, not part of the system root.
+
+---
+
+## 🔧 What Is a File System?
+
+A **file system** determines how data is organized on a drive.
+
+It controls:
+
+- How files are stored
+- How permissions work
+- How large files can be
+- How reliable and fast the storage is
+
+Two major file systems matter for media management:
+
+---
+
+# 🆚 EXT4 vs NTFS — Which Should You Use?
+
+Below is a simple, clear comparison.
+
+| Feature | EXT4 (Linux Native) | NTFS (Windows Native) |
+|--------|----------------------|------------------------|
+| Best OS support | Linux | Windows |
+| Performance on Linux | ⭐⭐⭐⭐ Fast | ⭐ Slow (requires NTFS-3G driver) |
+| Supports Linux permissions (chmod, chown) | ✔ Yes | ❌ No (emulated) |
+| Good for Plex & ARR stack | ✔ Best choice | ✔ Works but slower |
+| Reliability | ⭐⭐⭐⭐⭐ Excellent | ⭐⭐⭐ Good |
+| 4K/large drive support | ✔ Yes | ✔ Yes |
+| Automatic mounting | Easy | Slightly more complex |
+| Ideal use case | Permanent Linux storage | External drive shared with Windows |
+
+### ✔ **Choose EXT4 if the drive stays connected to your Raspberry Pi/Linux system.**
+This is the recommended choice for **media servers**, **Plex**, and **qBittorrent** because:
+
+- It’s faster
+- Uses native permissions
+- More stable
+- Less CPU overhead
+- Easier integration with Docker
+
+### ✔ **Choose NTFS only if the drive must also be used on Windows.**
+
+For example:
+
+- You physically unplug the drive and connect it to a Windows PC
+- You want to browse the media on Windows without a network share
+
+---
+
+## 🪟 Accessing an EXT4 Drive on Windows?
+EXT4 cannot be read by Windows *natively*.
+
+However, **this is not a problem**, because:
+
+### You will access your media over the network using **Samba (SMB)**.
+
+This means:
+
+- You keep the performance, safety, and permissions of EXT4
+- Windows PCs can still browse the media like a shared network drive
+
+We will configure Samba later in an optional section:
+
+👉 *“Accessing Your Media from Windows (Samba Setup)”*
+
+---
+
+## 📥 Choose Your Mounting Ritual
+Below are two scripts — pick one based on your file system choice.
+
+### 🟦 EXT4 Mounting Ritual (Recommended)
+
+**Download:**
+👉 [bind-machine-spirits-ext4.sh](../scripts/shell/setup-mount-points/ext4.sh)
+
+(Use this if your drive is formatted as EXT4 and stays connected permanently.)
+
+---
+
+### 🟨 NTFS Mounting Ritual (Legacy/Optional)
+
+**Download:**
+👉 [bind-machine-spirits-ntfs.sh](../scripts/shell/setup-mount-points/ntfs.sh)
+
+(Use this only if your drive must work on both Linux and Windows without Samba.)
+
+---
+
+## 🧭 What Happens Next?
+
+Once you choose your file system and run the ritual script:
+
+1. Your mount point will be created
+2. `/etc/fstab` will be updated for automatic mounting
+3. The drive will appear under `/mnt/omnissiah-vault`
+4. Subdirectories (movies, tv-shows, downloads, etc.) will be generated
+
+## Next steps
+
+Proceed to the **Setup Mount Points** step to prepare storage paths and permissions: `steps/setup-mount-points.md`.
+
+👉 **Install Docker**
+with all your directory paths standardized and ready for the media automation pipeline.
+
+---
--
2.49.1
From e4041cefa5b040517770a10d86c5342c5bba6ad6 Mon Sep 17 00:00:00 2001
From: Vishesh 'ironeagle' Bangotra
Date: Thu, 20 Nov 2025 20:59:40 +0530
Subject: [PATCH 04/14] refactor to correct folder
---
tutorials/media-manager/{ => docs}/getting-started.md | 0
tutorials/media-manager/{ => docs}/index.md | 0
tutorials/media-manager/{ => docs}/scripts/docker/.env | 0
.../media-manager/{ => docs}/scripts/docker/docker-compose.yaml | 0
.../media-manager/{ => docs}/scripts/shell/install-docker.sh | 0
tutorials/media-manager/{ => docs}/scripts/shell/install-plex.sh | 0
.../media-manager/{ => docs}/scripts/shell/install-qbittorrent.sh | 0
tutorials/media-manager/{ => docs}/scripts/shell/install-samba.sh | 0
.../{ => docs}/scripts/shell/setup-mount-points/ext4.sh | 0
.../{ => docs}/scripts/shell/setup-mount-points/ntfs.sh | 0
tutorials/media-manager/{ => docs}/steps/install-docker.md | 0
tutorials/media-manager/{ => docs}/steps/install-plex.md | 0
tutorials/media-manager/{ => docs}/steps/install-qbittorrent.md | 0
tutorials/media-manager/{ => docs}/steps/install-samba.md | 0
tutorials/media-manager/{ => docs}/steps/overview.md | 0
tutorials/media-manager/{ => docs}/steps/setup-media-manager.md | 0
tutorials/media-manager/{ => docs}/steps/setup-mount-points.md | 0
17 files changed, 0 insertions(+), 0 deletions(-)
rename tutorials/media-manager/{ => docs}/getting-started.md (100%)
rename tutorials/media-manager/{ => docs}/index.md (100%)
rename tutorials/media-manager/{ => docs}/scripts/docker/.env (100%)
rename tutorials/media-manager/{ => docs}/scripts/docker/docker-compose.yaml (100%)
rename tutorials/media-manager/{ => docs}/scripts/shell/install-docker.sh (100%)
rename tutorials/media-manager/{ => docs}/scripts/shell/install-plex.sh (100%)
rename tutorials/media-manager/{ => docs}/scripts/shell/install-qbittorrent.sh (100%)
rename tutorials/media-manager/{ => docs}/scripts/shell/install-samba.sh (100%)
rename tutorials/media-manager/{ => docs}/scripts/shell/setup-mount-points/ext4.sh (100%)
rename tutorials/media-manager/{ => docs}/scripts/shell/setup-mount-points/ntfs.sh (100%)
rename tutorials/media-manager/{ => docs}/steps/install-docker.md (100%)
rename tutorials/media-manager/{ => docs}/steps/install-plex.md (100%)
rename tutorials/media-manager/{ => docs}/steps/install-qbittorrent.md (100%)
rename tutorials/media-manager/{ => docs}/steps/install-samba.md (100%)
rename tutorials/media-manager/{ => docs}/steps/overview.md (100%)
rename tutorials/media-manager/{ => docs}/steps/setup-media-manager.md (100%)
rename tutorials/media-manager/{ => docs}/steps/setup-mount-points.md (100%)
diff --git a/tutorials/media-manager/getting-started.md b/tutorials/media-manager/docs/getting-started.md
similarity index 100%
rename from tutorials/media-manager/getting-started.md
rename to tutorials/media-manager/docs/getting-started.md
diff --git a/tutorials/media-manager/index.md b/tutorials/media-manager/docs/index.md
similarity index 100%
rename from tutorials/media-manager/index.md
rename to tutorials/media-manager/docs/index.md
diff --git a/tutorials/media-manager/scripts/docker/.env b/tutorials/media-manager/docs/scripts/docker/.env
similarity index 100%
rename from tutorials/media-manager/scripts/docker/.env
rename to tutorials/media-manager/docs/scripts/docker/.env
diff --git a/tutorials/media-manager/scripts/docker/docker-compose.yaml b/tutorials/media-manager/docs/scripts/docker/docker-compose.yaml
similarity index 100%
rename from tutorials/media-manager/scripts/docker/docker-compose.yaml
rename to tutorials/media-manager/docs/scripts/docker/docker-compose.yaml
diff --git a/tutorials/media-manager/scripts/shell/install-docker.sh b/tutorials/media-manager/docs/scripts/shell/install-docker.sh
similarity index 100%
rename from tutorials/media-manager/scripts/shell/install-docker.sh
rename to tutorials/media-manager/docs/scripts/shell/install-docker.sh
diff --git a/tutorials/media-manager/scripts/shell/install-plex.sh b/tutorials/media-manager/docs/scripts/shell/install-plex.sh
similarity index 100%
rename from tutorials/media-manager/scripts/shell/install-plex.sh
rename to tutorials/media-manager/docs/scripts/shell/install-plex.sh
diff --git a/tutorials/media-manager/scripts/shell/install-qbittorrent.sh b/tutorials/media-manager/docs/scripts/shell/install-qbittorrent.sh
similarity index 100%
rename from tutorials/media-manager/scripts/shell/install-qbittorrent.sh
rename to tutorials/media-manager/docs/scripts/shell/install-qbittorrent.sh
diff --git a/tutorials/media-manager/scripts/shell/install-samba.sh b/tutorials/media-manager/docs/scripts/shell/install-samba.sh
similarity index 100%
rename from tutorials/media-manager/scripts/shell/install-samba.sh
rename to tutorials/media-manager/docs/scripts/shell/install-samba.sh
diff --git a/tutorials/media-manager/scripts/shell/setup-mount-points/ext4.sh b/tutorials/media-manager/docs/scripts/shell/setup-mount-points/ext4.sh
similarity index 100%
rename from tutorials/media-manager/scripts/shell/setup-mount-points/ext4.sh
rename to tutorials/media-manager/docs/scripts/shell/setup-mount-points/ext4.sh
diff --git a/tutorials/media-manager/scripts/shell/setup-mount-points/ntfs.sh b/tutorials/media-manager/docs/scripts/shell/setup-mount-points/ntfs.sh
similarity index 100%
rename from tutorials/media-manager/scripts/shell/setup-mount-points/ntfs.sh
rename to tutorials/media-manager/docs/scripts/shell/setup-mount-points/ntfs.sh
diff --git a/tutorials/media-manager/steps/install-docker.md b/tutorials/media-manager/docs/steps/install-docker.md
similarity index 100%
rename from tutorials/media-manager/steps/install-docker.md
rename to tutorials/media-manager/docs/steps/install-docker.md
diff --git a/tutorials/media-manager/steps/install-plex.md b/tutorials/media-manager/docs/steps/install-plex.md
similarity index 100%
rename from tutorials/media-manager/steps/install-plex.md
rename to tutorials/media-manager/docs/steps/install-plex.md
diff --git a/tutorials/media-manager/steps/install-qbittorrent.md b/tutorials/media-manager/docs/steps/install-qbittorrent.md
similarity index 100%
rename from tutorials/media-manager/steps/install-qbittorrent.md
rename to tutorials/media-manager/docs/steps/install-qbittorrent.md
diff --git a/tutorials/media-manager/steps/install-samba.md b/tutorials/media-manager/docs/steps/install-samba.md
similarity index 100%
rename from tutorials/media-manager/steps/install-samba.md
rename to tutorials/media-manager/docs/steps/install-samba.md
diff --git a/tutorials/media-manager/steps/overview.md b/tutorials/media-manager/docs/steps/overview.md
similarity index 100%
rename from tutorials/media-manager/steps/overview.md
rename to tutorials/media-manager/docs/steps/overview.md
diff --git a/tutorials/media-manager/steps/setup-media-manager.md b/tutorials/media-manager/docs/steps/setup-media-manager.md
similarity index 100%
rename from tutorials/media-manager/steps/setup-media-manager.md
rename to tutorials/media-manager/docs/steps/setup-media-manager.md
diff --git a/tutorials/media-manager/steps/setup-mount-points.md b/tutorials/media-manager/docs/steps/setup-mount-points.md
similarity index 100%
rename from tutorials/media-manager/steps/setup-mount-points.md
rename to tutorials/media-manager/docs/steps/setup-mount-points.md
--
2.49.1
From 7386ecf04131616baf012f39e35cf2fb101287f6 Mon Sep 17 00:00:00 2001
From: Vishesh 'ironeagle' Bangotra
Date: Thu, 20 Nov 2025 22:00:47 +0530
Subject: [PATCH 05/14] humanized version and link fixes
---
.../media-manager/docs/getting-started.md | 116 ++++---
tutorials/media-manager/docs/index.md | 77 ++---
.../docs/steps/install-docker.md | 204 ++++++------
.../media-manager/docs/steps/install-plex.md | 150 ++++-----
.../docs/steps/install-qbittorrent.md | 145 +++++----
.../media-manager/docs/steps/install-samba.md | 181 +++++------
.../media-manager/docs/steps/overview.md | 163 +++++-----
.../docs/steps/setup-media-manager.md | 290 ++++++------------
.../docs/steps/setup-mount-points.md | 93 +++---
9 files changed, 642 insertions(+), 777 deletions(-)
diff --git a/tutorials/media-manager/docs/getting-started.md b/tutorials/media-manager/docs/getting-started.md
index 7151d67..2639a11 100644
--- a/tutorials/media-manager/docs/getting-started.md
+++ b/tutorials/media-manager/docs/getting-started.md
@@ -1,91 +1,89 @@
-# Prerequisites
+# Getting Started
-Before beginning the Media Manager setup, ensure that your system — whether it is a **fully configured and networked Raspberry Pi** or any other **Linux-based OS** — meets the minimum preparation requirements. Although this guide uses a Raspberry Pi as the reference environment, the setup works on almost any Linux host with minimal or no modification.
+Setting up a Raspberry Pi for media management is generally straightforward, and many users have their own preferred
+setup methods. This guide provides basic guidelines to help you prepare your Raspberry Pi or any Linux-based system for
+the Media Manager setup without going into exhaustive detail.
---
## Recommended System Requirements
-* Raspberry Pi 4 / 5 (4GB or 8GB recommended), or any Linux server/VM
-* 64-bit OS
-* Minimum 32GB storage
-* External HDD/SSD for media storage
-* Stable network connection (Ethernet recommended)
+- Raspberry Pi 4 or 5 (4GB or 8GB RAM recommended) or any Linux server/VM
+- 64-bit operating system
+- At least 32GB of storage
+- External HDD or SSD for media storage
+- Stable network connection (Ethernet preferred)
---
-## What Should Already Be Set Up
+## What You Should Have Done Already
+
+While this document won’t cover detailed Raspberry Pi installation steps, your system should be ready with the
+following:
### 1. Raspberry Pi flashed and booted
-Your system should already have:
+- Raspberry Pi OS or Ubuntu Server installed
+- Completed the first boot
+- System fully updated:
+ ```bash
+ sudo apt update && sudo apt upgrade -y
+ ```
-* Raspberry Pi OS / Ubuntu Server installed
-* First boot completed
-* System updated:
+### 2. Network setup configured
- ```bash
- sudo apt update && sudo apt upgrade -y
- ```
+- Working network with either static IP or DHCP reservation
+- SSH enabled for remote access (recommended):
+ ```bash
+ sudo systemctl enable ssh --now
+ ```
-### 2. Network configuration
+### 3. Storage attached and mounted
-You should have:
+- External drives physically connected
+- Drives recognized and formatted
+- Mounted persistently via `/etc/fstab`, or ready to be configured in the mount points step
-* Working network access
-* Static IP or DHCP reservation
-* SSH enabled (recommended):
+### 4. Timezone and system time set
- ```bash
- sudo systemctl enable ssh --now
- ```
-
-### 3. Storage connected and mounted
-
-If using external HDD/SSD:
-
-* Drives physically connected
-* File systems recognized
-* Drives mounted persistently via `/etc/fstab`, or prepared for mounting in the Setup Mount Points step
-
-### 4. System time and timezone configured
-
-```bash
-sudo timedatectl set-timezone Asia/Kolkata
-```
-
-### 5. Basic Linux familiarity
-
-You should be comfortable with:
-
-* Navigating directories
-* Editing files using nano or vim
-* Running commands via SSH
+- Set the correct timezone for your location:
+ ```bash
+ sudo timedatectl set-timezone Asia/Kolkata
+ ```
---
-## Optional but Recommended
+### 5. Basic Linux knowledge
-### Enable UFW Firewall
+- Comfortable navigating directories, editing files (nano or vim), and running commands remotely via SSH
-```bash
-sudo apt install ufw
-sudo ufw enable
-sudo ufw allow ssh
-```
+---
-### Set a hostname
+## Optional but Helpful
-```bash
-sudo hostnamectl set-hostname media-manager
-```
+- Enable UFW firewall for added security:
+ ```bash
+ sudo ufw enable
+ sudo ufw allow ssh
+ sudo ufw allow /tcp
+ ```
-### Hardware acceleration for Plex (optional)
+- Set a custom hostname for your device:
+ ```bash
+ sudo hostnamectl set-hostname media-manager
+ ```
-Raspberry Pi users may enable VAAPI/V4L2 for improved transcoding.
+- For Raspberry Pi users, hardware acceleration for Plex (VAAPI/V4L2) can improve media transcoding performance.
---
## Next Step
-Proceed to **[Overview](steps/overview.md)** once the above setup is complete.
+Once your Raspberry Pi or Linux host is prepared, continue to the **[Overview](steps/overview.md)** for the installation
+workflow.
+
+---
+
+*Note:* Setting up a Raspberry Pi is quite accessible with many guides available online. Since everyone tends to have
+personal preferences for flashing and configuring their Pi, this guide keeps the instructions focused on what’s
+essential for the Media Manager setup without rehashing basic Raspberry Pi tutorials.
diff --git a/tutorials/media-manager/docs/index.md b/tutorials/media-manager/docs/index.md
index 9ef3de5..9ff0577 100644
--- a/tutorials/media-manager/docs/index.md
+++ b/tutorials/media-manager/docs/index.md
@@ -1,71 +1,74 @@
# Media Manager Setup Guide
-Welcome to the **Media Manager Tutorial**.
-This guide walks you through setting up a complete, automated media workflow using:
+Welcome to the **Media Manager Tutorial**!
+This comprehensive guide will help you set up an automated home media system, perfect for managing movies and TV
+shows—from downloading to organizing and streaming.
-- **Docker** (host)
-- **Plex Media Server** (host)
-- **qBittorrent** (host)
-- **ARR Stack** (Radarr, Sonarr, Prowlarr, Bazarr) via **docker-compose**
+### What’s Inside
-Whether you're setting up a home media server or a full automated media pipeline, this documentation provides clear, step-by-step instructions from installation to daily usage.
+You’ll learn how to use:
+
+- **Docker** to run and manage your media applications.
+- **Plex Media Server** for streaming your media library at home or remotely.
+- **qBittorrent** to automate downloads.
+- The **ARR Stack** (Radarr, Sonarr, Prowlarr, Bazarr), brought together in Docker containers using `docker-compose`, to
+ streamline everything from searching for new releases to handling subtitles and metadata.
---
## 📚 What You Will Build
-By the end of this guide, you will have a fully configured media management system that:
+By following this guide, you’ll create a powerful and hands-off media setup that can:
-- Automates movie and TV downloads
-- Organizes media files into structured libraries
-- Streams content through Plex locally or remotely
-- Integrates Radarr/Sonarr with qBittorrent
-- Automatically searches for new releases
-- Repairs metadata and subtitles
-- Requires minimal manual intervention once running
+- Automatically find and download movies and TV episodes.
+- Keep your media library tidy and organized.
+- Stream your collection anywhere using Plex.
+- Link Radarr/Sonarr with qBittorrent for true automation.
+- Grab new releases as soon as they’re available.
+- Fix metadata and fetch subtitles without hassle.
+- Stay largely self-maintaining, so you don’t have to babysit it each day.
---
## 📁 Components Overview
-| Component | Installed On | Purpose |
-|------------------|--------------|---------|
-| **Docker** | Host | Runs containerized media services (ARR stack) |
-| **Plex** | Host | Streams your organized movies/TV shows |
-| **qBittorrent** | Host | Torrent client for automated downloads |
-| **Arr Stack** (Radarr, Sonarr, Prowlarr, Bazarr) | Docker-Compose | Automated search, download, organization, metadata, subtitles |
+| Component | Where It Runs | What It Does |
+|--------------------------------------------------|----------------------------|------------------------------------------------------------------------------|
+| **Docker** | Your server or computer | Hosts and runs the ARR stack containers. |
+| **Plex** | Your server or computer | Streams your sorted media collection. |
+| **qBittorrent** | Your server or computer | Handles torrent downloads automatically. |
+| **ARR Stack** (Radarr, Sonarr, Prowlarr, Bazarr) | Docker, via docker-compose | Manages searching, downloading, organizing, and handling metadata/subtitles. |
---
## 🚀 Quick Navigation
-Use the links below to jump to any part of the guide:
+Jump directly to any part of the guide:
-| Section | Description |
-|---------|-------------|
-| [Getting Started](getting-started.md) | Requirements, OS, network, prerequisites |
-| [Overview](steps/overview.md) | Summary of the installation workflow |
-| [Setup Mount Points](steps/setup-mount-points.md) | Create directories for media, downloads, configs |
-| [Install Docker](steps/install-docker.md) | Install Docker + docker-compose |
-| [Install Plex](steps/install-plex.md) | Install and configure Plex Media Server |
-| [Install qBittorrent](steps/install-qbittorrent.md) | Install and configure qBittorrent |
-| [Setup Media Manager](steps/setup-media-manager.md) | Deploy Radarr, Sonarr, Prowlarr, Bazarr with docker-compose |
-| [Usage Guide](usage.md) | How to use Plex, Arr, automation steps |
-| [Troubleshooting](troubleshooting.md) | Common issues and fixes |
+| Section | What’s Covered |
+|-----------------------------------------------------|-------------------------------------------------------|
+| [Getting Started](getting-started.md) | Prerequisites, operating system, and network overview |
+| [Overview](steps/overview.md) | A bird’s-eye view of the whole process |
+| [Setup Mount Points](steps/setup-mount-points.md) | How to create folders for your media |
+| [Install Docker](steps/install-docker.md) | Instructions for Docker and docker-compose |
+| [Install Plex](steps/install-plex.md) | Plex setup and configuration |
+| [Install qBittorrent](steps/install-qbittorrent.md) | qBittorrent installation and tips |
+| [Setup Media Manager](steps/setup-media-manager.md) | Deploying the ARR stack with docker-compose |
---
## 🧭 How to Use This Guide
-This tutorial is structured linearly. You should follow the sections in order unless you already have certain components installed.
+This guide is designed to be followed step by step. If you already have some tools installed, you can skip those
+sections—otherwise, work through each part in order for a smooth setup.
---
## 💬 Need Help?
-Each step includes explanations, commands, and troubleshooting tips.
-If you're stuck, refer to the troubleshooting section or review each command carefully.
+Every step offers clear commands, explanations, and tips.
+If you hit a roadblock, check out the troubleshooting section or double-check the instructions provided.
---
-Let’s begin with the basics → **[Getting Started](getting-started.md)**
+Ready to get started? Head to → **[Getting Started](getting-started.md)**
diff --git a/tutorials/media-manager/docs/steps/install-docker.md b/tutorials/media-manager/docs/steps/install-docker.md
index 7af1ccc..281b2da 100644
--- a/tutorials/media-manager/docs/steps/install-docker.md
+++ b/tutorials/media-manager/docs/steps/install-docker.md
@@ -1,172 +1,162 @@
# Installing Docker — What It Is, How It Works, and Why We Use It
-Before installing Docker, it’s important to understand **what Docker actually does**, **how it fits into our media management setup**, and **why we run only the ARR stack inside Docker** while keeping **qBittorrent and Plex on the host system**.
+Before installing Docker, it’s helpful to understand **what Docker does**, **how it fits into our media management setup
+**, and **why we run only the ARR stack inside Docker** while keeping **qBittorrent and Plex on the host system**.
-This page will walk you through all of that in simple, practical terms.
+This page breaks it down simply and practically.
---
-# 🐳 What Is Docker?
+## 🐳 What Is Docker?
Docker is a **containerization platform**.
-That means:
+It allows you to run applications in isolated environments called **containers**. Each container:
-### Docker lets you run applications in small, isolated environments called **containers**.
+- Has its own filesystem
+- Includes its own dependencies and libraries
+- Runs separately from your main system
+- Can be recreated or removed easily
-A container:
+Think of a container as:
-- has its own filesystem
-- has its own dependencies
-- has its own libraries
-- cannot interfere with your main system
-- can be destroyed and recreated easily
+> **A lightweight, specialized mini-computer dedicated to one app.**
-Think of it like:
-
-> **A lightweight, specialized mini-computer for one application.**
-
-This makes apps more predictable, easier to upgrade, and easier to manage.
+This approach makes apps more predictable, easier to manage, and simpler to update.
---
-# 🔧 Why Use Docker?
+## 🔧 Why Use Docker?
-### ✔ Avoid dependency conflicts
-Containers ship the libraries the app needs, so you don’t pollute your main OS.
-
-### ✔ Easy to update
-Updating Radarr/Sonarr/Prowlarr becomes:
+- **Avoid dependency conflicts:** Containers bundle the app’s needed libraries, leaving your base OS clean.
+- **Easy updates:** Updating Radarr/Sonarr/Prowlarr is as simple as running:
```
docker compose pull
docker compose up -d
```
-### ✔ Easy to back up
-ARR services store their config in a small folder you can snapshot.
-
-### ✔ Perfect for things that change often
-Indexers break, Prowlarr updates, Radarr adds features — Docker makes it painless.
+- **Easy backups:** Configuration files are stored in small, manageable folders.
+- **Great for frequently changing apps:** Apps like Prowlarr and Radarr update often, and Docker simplifies rollout.
---
-# 🚫 Why Not Put Everything in Docker?
+## 🚫 Why Not Put Everything in Docker?
-You *can* put everything in Docker, but in a real-world Raspberry Pi / home-server environment, some apps **behave badly** or **have limitations** inside containers.
-
-Below is the reasoning for each major component.
+While you could put all components into Docker, some behave poorly or have limitations when containerized, especially on
+Raspberry Pi or home servers.
---
-# ❌ Why qBittorrent Is NOT in Docker
+## ❌ Why qBittorrent Is NOT in Docker
-### qBittorrent needs:
-- fine-grained permission control
-- direct disk access
-- stable file paths
-- high-speed I/O for torrent hashing
-- ability to handle sudden restarts and disk states
+qBittorrent requires:
-Inside Docker, qBit often has problems:
+- Precise file permission control
+- Direct disk access
+- Stable, predictable file paths
+- High-speed I/O for torrent hashing
+- Ability to handle sudden restarts and disk changes
-| Problem | Why It Happens |
-|--------|----------------|
-| Slow hashing | Docker’s overlay filesystem adds overhead |
-| Permission issues | Containers struggle with mixed UID/GID + bind mounts |
-| Inconsistent paths | qBit expects real Linux paths for completed downloads |
-| Harder integration | Radarr/Sonarr sometimes misread container-mapped paths |
+Within Docker, qBittorrent faces problems like:
-### 🧠 Therefore:
-**qBittorrent on the host is cleaner, faster, and more stable.**
+| Problem | Cause |
+|--------------------|-------------------------------------------|
+| Slow hashing | Docker overlay filesystem overhead |
+| Permission issues | UID/GID mismatch with bind mounts |
+| Inconsistent paths | Container paths differ from host paths |
+| Poor integration | Radarr/Sonarr struggles with Docker paths |
+
+### Conclusion:
+
+Running qBittorrent directly on the host is faster, more reliable, and simpler.
---
-# ❌ Why Plex Is NOT in Docker
+## ❌ Why Plex Is NOT in Docker
-This is even more important.
+Plex relies on:
-### Plex inside Docker struggles with:
+| Feature | Issue in Docker |
+|---------------------------------------------|------------------------------------------|
+| Hardware transcoding (VAAPI/V4L2/QuickSync) | Often broken or complicated to configure |
+| Direct I/O from huge libraries | Overlay filesystem slows down I/O |
+| Network discovery (multicast/IGMP) | Blocked or isolated inside containers |
+| Handling millions of metadata files | Poor container filesystem performance |
-| Feature | Issue in Docker |
-|--------|-----------------|
-| **Hardware transcoding (VAAPI/V4L2/QuickSync)** | Often broken or requires special setup |
-| **Direct I/O from large libraries** | Docker overlay adds slowdowns |
-| **Automatic network discovery** | Plex uses multicast/IGMP which Docker isolates |
-| **Large metadata directories** | Docker containers don’t like millions of tiny files |
+### Conclusion:
-Plex has a massive, constantly evolving I/O profile and **performs best on bare metal** (host).
-
-### 🧠 Therefore:
-**Install Plex directly on the host for speed, compatibility, and transcoding support.**
+Plex runs best on the host machine for speed, compatibility, and stable transcoding.
---
-# 🟩 Why the ARR Stack *Is* in Docker
+## 🟩 Why the ARR Stack *Is* in Docker
-Radarr, Sonarr, and Prowlarr:
+Radarr, Sonarr, Prowlarr, and Bazarr are:
-- are lightweight
-- use clean, simple paths
-- store configuration in manageable folders
-- benefit from frequent updates
-- rarely need hardware access
-- behave very predictably in containers
+- Lightweight and simple
+- Use stable, clean directory structures
+- Store config in small folders
+- Benefit from frequent updates
+- Don’t require hardware passes
+- Designed to run smoothly in containers
-They’re practically **designed to live inside Docker**.
+### Benefits:
-### ✔ Consistent paths
-As long as `/mnt/omnissiah-vault` is mounted, containers have zero issues.
-
-### ✔ Easy migrations
-Moving to a new server is as simple as:
-
-```
-copy configs → run docker-compose → done
-```
-
-### ✔ Better isolation
-If Radarr breaks from an update, it won’t affect Plex or qBit.
+- Consistent file paths as long as `/mnt/omnissiah-vault` is mounted
+- Easy migration with just config copy and docker-compose run
+- Isolation protects other apps if something breaks
---
-# 🧱 Summary — The Architecture Philosophy
+## 🧱 Summary — The Architecture Philosophy
-| Component | Host or Docker? | Reason |
-|----------|------------------|---------|
-| **Docker Engine** | Host | Foundation layer |
-| **ARR Stack (Radarr / Sonarr / Prowlarr / Bazarr)** | Docker | Best candidates for containers |
-| **qBittorrent** | Host | Needs stable I/O + real filesystem access |
-| **Plex** | Host | Needs hardware transcoding + network discovery |
+| Component | Location | Reason |
+|----------------------------------------------|----------|----------------------------------------------------|
+| Docker Engine | Host | Foundation layer |
+| ARR Stack (Radarr, Sonarr, Prowlarr, Bazarr) | Docker | Perfect container candidates |
+| qBittorrent | Host | Needs real filesystem and speed |
+| Plex | Host | Needs hardware transcoding and network integration |
-This hybrid approach gives us the **best combination of performance, stability, and maintainability**.
+This hybrid setup balances performance, reliability, and ease of maintenance.
---
-# 🧰 Installing Docker (Raspberry Pi / Linux)
+## 🧰 Installing Docker (Raspberry Pi / Linux)
-Here is the installation script referenced in the flow:
+This tutorial uses an installation script that:
-### 📥 Download Script
-👉 **[install-docker.sh](../scripts/shell/install-docker.sh)**
+- Updates your system
+- Removes any old conflicting packages
+- Installs Docker using the official convenience script
+- Installs Docker Compose
+- Adds your user to the docker group
+- Enables and starts Docker service
+- Verifies successful install
-### 🖥️ What the script does
-- updates the system
-- removes conflicting old packages
-- installs Docker using the official convenience script
-- installs Docker Compose
-- adds your user to the docker group
-- enables and starts the Docker service
-- verifies installation
+### 📥 Download Script
-After running it:
+👉 **[install-docker.sh](../scripts/shell/install-docker.sh)**
+
+---
+
+## 🚀 After Installation
+
+- reboot your system:
```bash
sudo reboot
```
-Your system will be ready to run containerized ARR services.
-# 🚀 Next Step: Configure Plex (Host Installation)
-Once Docker is installed, we move forward with:
-👉 Install Plex (steps/install-plex.md)
-This ensures the server is ready to serve media once the ARR stack begins populating it.
+Once rebooted, your system will be ready to run containerized ARR services.
+
+---
+
+## 🚀 Next Step: Install Plex on the Host
+
+Once Docker is installed, move on to installing Plex directly on the host to ensure your server is ready to stream media
+as the ARR stack populates your libraries.
+
+Go to 👉 [Install Plex](install-plex.md)
+
+---
diff --git a/tutorials/media-manager/docs/steps/install-plex.md b/tutorials/media-manager/docs/steps/install-plex.md
index a68b5e0..fd3a273 100644
--- a/tutorials/media-manager/docs/steps/install-plex.md
+++ b/tutorials/media-manager/docs/steps/install-plex.md
@@ -1,89 +1,83 @@
# Installing Plex Media Server
-Plex is the heart of your media ecosystem. It scans your library, fetches metadata, organizes everything neatly, and makes your movies and shows available to stream from anywhere. Installing Plex is straightforward, but **where you store its configuration and metadata** is extremely important.
+Plex is the core of your media ecosystem. It scans your libraries, fetches metadata, organizes your content, and lets
+you stream movies and shows from anywhere. While installing Plex is straightforward, **where you store its configuration
+and metadata** is crucial for performance and longevity.
-This guide explains:
+This guide covers:
-* What Plex is and how it works
-* Why it should *not* run inside Docker in this setup
-* Why its configuration directory must be placed on your external HDD
-* What gets stored there and how large it can grow
-* The installation script used to set everything up
+- What Plex is and how it works
+- Why Plex should *not* run inside Docker in this setup
+- Why its configuration directory belongs on your external HDD
+- What Plex stores and how large it can get
+- The installation script used to set it all up
---
-# 🎬 What Is Plex?
+## 🎬 What Is Plex?
Plex Media Server is an application that:
-* Indexes your media library
-* Fetches rich metadata (posters, backgrounds, cast info, themes)
-* Streams your content to TVs, phones, tablets, and browsers
-* Transcodes media when needed
-* Manages user accounts, watch history, and recommendations
+- Indexes your media collection
+- Fetches rich metadata like posters, backgrounds, cast info, and themes
+- Streams content to TVs, phones, tablets, and browsers
+- Transcodes media when needed for smooth playback
+- Manages users, watch history, and personalized recommendations
-Plex is extremely powerful — but with that power comes heavy disk usage.
+With great power comes heavy disk usage.
---
-# 🧱 Why Plex Runs *Outside* Docker
+## 🧱 Why Plex Runs *Outside* Docker
-Although Docker is fantastic for the ARR stack, Plex is more demanding and behaves better on the **host system**.
+Though Docker is excellent for the ARR stack, Plex demands more and runs better directly on the host system.
-Running Plex in Docker often introduces problems:
+Common problems running Plex inside Docker:
-| Issue | Why It Happens in Docker |
-| ------------------------------------ | -------------------------------------------------------- |
-| **Hardware transcoding failures** | Containerization interferes with VAAPI/V4L2/QuickSync |
-| **Slow scanning of large libraries** | Docker's overlay filesystem slows metadata I/O |
-| **Network discovery issues** | Plex requires multicast/IGMP, blocked by Docker networks |
-| **Large metadata directory** | Containers struggle with millions of tiny files |
+| Issue | Cause in Docker |
+|----------------------------------|---------------------------------------------------------|
+| Hardware transcoding failures | Containerization blocks VAAPI/V4L2/QuickSync access |
+| Slow scanning of large libraries | Overlay filesystem slows metadata read/write |
+| Network discovery issues | Plex multicast/IGMP blocked by Docker network isolation |
+| Large metadata directories | Containers struggle with millions of tiny files |
-Real-world experience proves Plex performs best when installed directly on the OS.
+Practical experience shows Plex performs best installed natively on the OS.
---
-# 🗃️ Why Move Plex Metadata to an External HDD?
+## 🗃️ Why Move Plex Metadata to an External HDD?
-Plex stores a massive amount of metadata — often **tens or hundreds of gigabytes** depending on library size.
+Plex stores a huge amount of metadata—often tens to hundreds of gigabytes, depending on your library size.
-Here’s what Plex stores inside its config directory:
+Stored in its config directory are:
-* Posters & artwork
-* Backdrops
-* Theme music
-* Subtitles
-* Optimization cache
-* Transcoding cache
-* Databases for:
+- Posters and artwork
+- Backdrops
+- Theme music
+- Subtitles
+- Optimization and transcoding caches
+- Databases for libraries, watch history, video analysis, and intro detection
- * Libraries
- * Watch history
- * Video analysis
- * Intro detection
+### 📌 Typical Metadata Sizes
-These files grow quickly.
+- Small library (500 files): **5–10 GB**
+- Medium library (2,000 files): **20–50 GB**
+- Large library (10,000+ files): **100 GB+**
-## 📌 Example Metadata Sizes
+If this data stays on your system SD card or root SSD (e.g., `/var/lib/plexmediaserver`):
-* Small library (500 files): **5–10 GB**
-* Medium library (2,000 files): **20–50 GB**
-* Large library (10,000+ files): **100 GB+**
+- The OS disk can fill up fast
+- SD cards may wear out prematurely
+- Plex performance will degrade
-If you keep this in `/var/lib/plexmediaserver` on the SD card or system SSD:
+### ✔ Store metadata on your external HDD to:
-* The OS disk will fill up
-* SD cards will wear out quickly
-* Plex performance will suffer severely
+- Access large, fast storage
+- Protect your OS drive from filling
+- Extend SD card lifespan
+- Boost Plex scanning and caching speeds
-### ✔ Placing metadata on your external HDD solves everything
-
-* Massive storage availability
-* Higher endurance than SD cards
-* Faster scanning and caching
-* No risk of filling the root filesystem
-
-This is why we relocate Plex config to:
+This is why Plex config is relocated to:
```
/mnt/omnissiah-vault/configs/plex
@@ -91,34 +85,42 @@ This is why we relocate Plex config to:
---
-# ⚙️ Installation Script
+## ⚙️ Installation Script
-Below is the installation script used for this tutorial. It:
+This tutorial uses an installation script that:
-* Installs Plex Media Server from the official repository
-* Stops the service
-* Moves its entire metadata/config directory to your mounted HDD
-* Creates a symlink so Plex still sees the expected path
-* Ensures correct ownership for the `plex` user
-* Restarts and enables the service
-* 📥 Download Script
-👉 **[install-docker.sh](../scripts/shell/install-plex.sh)**
+- Installs Plex Media Server from the official repository
+- Stops the Plex service temporarily
+- Moves the entire Plex metadata and config folder to your external HDD
+- Creates a symbolic link so Plex finds its config in the expected place
+- Fixes file ownerships for the `plex` user
+- Restarts and enables Plex to run on boot
+
+### 📥 Download Script
+
+👉 **[install-plex.sh](../scripts/shell/install-plex.sh)**
---
-# 🚀 After Installation
+## 🚀 After Installation
-Once Plex is installed and its metadata moved to your external drive, you can:
+Once Plex is installed and its metadata moved:
-* Open the Web UI
-* Sign in with your Plex account
-* Add your libraries from `/mnt/omnissiah-vault/media`
-* Run a full scan
+- Open the Plex Web UI in your browser
+- Sign in with your Plex account
+- Add your media libraries pointing to `/mnt/omnissiah-vault/media`
+- Run a full library scan
-Everything moving forward — including posters, metadata, intro detection, and caching — will stay safely on the external HDD.
+All ongoing metadata, caching, posters, and intro markers will safely reside on your external HDD.
---
-# ➡️ Next Step
+## ➡️ Next Step: Install qBittorrent on the Host
-Proceed to **Install qBittorrent** to complete the host-based components.
+After successfully installing Plex and configuring its metadata on your external HDD, it’s time to set up **qBittorrent
+**, the torrent client responsible for downloading your media files automatically.
+
+Proceed to the detailed installation and configuration instructions here:
+Go to 👉 **[Install qBittorrent](install-qbittorrent.md)**
+
+---
diff --git a/tutorials/media-manager/docs/steps/install-qbittorrent.md b/tutorials/media-manager/docs/steps/install-qbittorrent.md
index a25f452..398b91f 100644
--- a/tutorials/media-manager/docs/steps/install-qbittorrent.md
+++ b/tutorials/media-manager/docs/steps/install-qbittorrent.md
@@ -1,110 +1,104 @@
# Installing qBittorrent (Host Installation)
-qBittorrent is the download engine of your media automation setup. It handles all torrent activity triggered by Radarr, Sonarr, and Prowlarr. Installing it on the **host system** (not Docker) ensures optimal speed, stable paths, and maximum compatibility.
+qBittorrent is the download engine of your media automation setup. It handles all torrent activity triggered by Radarr,
+Sonarr, and Prowlarr. Installing it on the **host system** (not Docker) ensures optimal speed, stable paths, and maximum
+compatibility.
This guide explains:
-* What qBittorrent does in the media pipeline
-* Why it should *not* run inside Docker in a real-world Pi/home server setup
-* Why its configuration does **not** need to be moved to your external drive
-* The installation script used to install and run qBittorrent as a systemd service
+- What qBittorrent does in the media pipeline
+- Why it should *not* run inside Docker in a real-world Pi/home server setup
+- Why its configuration does **not** need to be moved to your external drive
+- The installation script used to install and run qBittorrent as a systemd service
---
-# 🌀 What Is qBittorrent?
+## 🌀 What Is qBittorrent?
-qBittorrent is an open‑source torrent client with:
+qBittorrent is an open‑source torrent client featuring:
-* A lightweight Web UI
-* Fast download engine
-* Built-in category and tagging support
-* Excellent integration with Radarr & Sonarr
-* Very low resource usage
+- Lightweight Web UI
+- Fast download engine
+- Built-in category and tagging support
+- Excellent integration with Radarr & Sonarr
+- Very low resource usage
It acts as the **download worker** for the entire Media Manager.
-When Radarr/Sonarr find a new movie or episode, they send the torrent to qBittorrent. When the download completes, ARR handles renaming and moving the file.
+When Radarr or Sonarr find new media, they send the torrent to qBittorrent. Upon completion, ARR processes renaming and
+file management.
---
-# ❌ Why qBittorrent Should NOT Run in Docker
+## ❌ Why qBittorrent Should NOT Run in Docker
-Although qBittorrent *can* run in Docker, it performs **significantly worse** and causes practical issues when used on low-power servers like Raspberry Pi.
+Though technically possible, running qBittorrent in Docker on low-power hardware like Raspberry Pi causes significant
+issues:
-Here’s why.
+### 1. Docker slows torrent hashing
-## 🐌 1. Docker slows down torrent hashing
+- Torrenting requires intensive hashing and verifying large files
+- Docker’s overlay filesystem adds overhead, causing slower hashing and higher CPU usage
-qBit must:
+### 2. Permissions become complicated
-* Hash large files
-* Verify blocks
-* Manage partial pieces
+- Bind-mounted volumes in Docker cause UID/GID mismatches
+- Sonarr/Radarr struggle to access or import completed downloads correctly
+- On the host, file permissions behave predictably and natively
-Docker overlays add filesystem overhead → hashing becomes slower → CPU usage increases.
+### 3. Stable real file paths are necessary
-## 🔐 2. Permissions become messy
+- qBittorrent expects actual Linux paths (e.g., `/mnt/omnissiah-vault/downloads`)
+- Containers often abstract paths, confusing ARR’s automation
-Inside Docker:
+### 4. Performance is better on the host
-* Download paths are bind-mounted
-* UID/GID mapping becomes inconsistent
-* Sonarr/Radarr sometimes cannot see or import completed downloads
+- Download speeds, disk writes, and hashing all run faster without Docker’s overhead
-On the host:
+### ✔ Conclusion:
-* Files are native
-* Permissions are predictable
-* ARR integration is flawless
-
-## 📁 3. Real file paths are required for stability
-
-qBit expects stable, real Linux paths like:
-
-```
-/mnt/omnissiah-vault/downloads
-```
-
-Containers often abstract or rewrite these, confusing ARR.
-
-## 🚀 4. Performance is dramatically better on the host
-
-Download speed, disk writes, and hashing are all faster without Docker.
-
-### ✔ Therefore:
-
-**qBittorrent belongs on the host system for maximum stability and speed.**
+**qBittorrent performs best installed directly on the host system.**
---
-# 📦 Why qBittorrent Config Does NOT Go on the External HDD
+## 📦 Why qBittorrent Configuration Does NOT Need External HDD
-Unlike Plex—which can generate **tens of gigabytes** of metadata—qBittorrent stores only:
+Unlike Plex’s large metadata, qBittorrent stores only minor config files such as:
-* a few small configuration files
-* a few `.fastresume` entries
-* a small database of torrents
+- Configuration settings
+- Small torrent resume files
+- A lightweight database
-Typical qBit config directory size:
+Typical config size: **2–20 MB** — negligible and stable.
-* 2–20 MB
-
-It does **not** grow with your media library.
-
-### ✔ Keeping qBit on the internal OS disk is safe and recommended.
+Keeping qBittorrent config on your system’s internal OS disk is safe and recommended.
---
-# ⚙️ Installation Script (Systemd Service)
+## ⚙️ Installation Script (Systemd Service)
+
+## ⚙️ Installation Script
+
+This tutorial uses an installation script that:
+
+- Updates and upgrades system packages
+- Installs qBittorrent-nox (the headless version)
+- Creates a dedicated system user for qBittorrent
+- Adds your normal user to the qBittorrent group for file access
+- Creates a systemd service file to run qBittorrent as a background service
+- Enables and starts the qBittorrent service to run at boot
+
+After running the script, you can access qBittorrent’s Web UI and begin configuring your download settings.
+
+### 📥 Download Script
+
+👉 **[install-qbittorrent.sh](../scripts/shell/install-qbittorrent.sh)**
-The script below installs qBittorrent‑nox and configures it to run as a background service.
-* 📥 Download Script
-👉 **[install-docker.sh](../scripts/shell/install-qbittorrent.sh)**
---
-# 🚀 After Installation
+## 🚀 After Installation
-Visit:
+Access the Web UI at:
```
http://:8080
@@ -117,18 +111,23 @@ username: admin
password: adminadmin
```
-You *must* change the password on first login.
+**Change your password on first login!**
Next steps:
-* Configure download paths
-* Add categories (`movies`, `tv`, etc.)
-* Disable torrenting features you don’t need
+- Configure download directories
+- Add categories such as `movies` and `tv`
+- Disable any unwanted torrenting features
-ARR integration happens after the Docker portion is set up.
+ARR integration will be configured after the Docker-based ARR stack is deployed.
---
-# ➡️ Next Step
+## ➡️ Next Step: Setup ARR Stack (Docker Compose)
-Proceed to the **ARR Stack setup (Docker Compose)** to handle automation.
+Now that host-based components (Plex and qBittorrent) are ready, proceed to deploy the ARR stack via Docker Compose to
+automate searching, downloading, and organizing your media.
+
+Go to 👉 **[Setup Media Manager](setup-media-manager.md)**
+
+---
diff --git a/tutorials/media-manager/docs/steps/install-samba.md b/tutorials/media-manager/docs/steps/install-samba.md
index adef844..dfacfb9 100644
--- a/tutorials/media-manager/docs/steps/install-samba.md
+++ b/tutorials/media-manager/docs/steps/install-samba.md
@@ -1,164 +1,121 @@
# Optional: Installing Samba for Windows Network Access
-Samba is **optional** in this Media Manager setup, but highly recommended if:
+While Samba setup is not mandatory for this Media Manager system, it’s highly recommended if you want easier access to your media files from Windows machines or other devices on your network.
-* You use **Windows** and want to browse your media files easily
-* You want to manually adjust or inspect downloaded files
-* You want to drag-and-drop subtitles, rename files, or fix issues directly
-* You want the flexibility of mounting your media as a network drive
+Here’s why you might want to consider Samba:
-If you only ever access files through Plex, ARR apps, or the Linux shell, then Samba is **not required**.
+- You use **Windows** and want to browse your media files through File Explorer effortlessly.
+- You prefer to manage downloaded files manually—like dragging subtitles into folders, renaming movies, or cleaning up files directly.
+- You want to have the media storage appear as a network drive for quick access anytime.
+
+If you mainly interact with your media through Plex, Radarr, Sonarr, or the Linux terminal, Samba is not essential.
---
-# 🧩 Why Samba Might Be Needed
+## Why Samba Can Be Useful
-Although Radarr, Sonarr, and Bazarr automate nearly everything, there are situations where **manual file access** is useful:
+Despite the automation provided by Radarr, Sonarr, and Bazarr, there are times when manual access is needed:
-* Fixing incorrectly tagged files
-* Manual subtitle adjustments
-* Deleting or replacing corrupted media
-* Organizing large folders
-* Backing up media manually
+- Fixing files that didn’t tag correctly
+- Adjusting subtitles
+- Removing or replacing problematic media
+- Organizing your library beyond automation
+- Taking backups of your media collection
-On **Linux or macOS**, this can be done easily over SSH.
-
-On **Windows**, the easiest way is via **Samba (SMB)** network shares.
+On Linux or macOS, SSH provides a way to do this. But Windows users benefit most from Samba shares, which map your server’s drive like a regular Windows network folder.
---
-# 💠 What Samba Does
+## What Samba Does
-Samba exposes directories on your Raspberry Pi/Linux server as Windows-compatible network drives.
+Samba turns your Raspberry Pi or Linux server’s storage into Windows-friendly network shares.
-It allows you to access:
+For example, the folder:
```
/mnt/omnissiah-vault
```
-from Windows like:
+Can be used from Windows like:
```
Z:\ → Omnissiah-Vault
```
-This behaves like a native Windows drive:
+This means in Windows:
-* You can open files
-* Copy folders
-* Delete/rename items
-* Perform maintenance tasks
+- You can open and play files
+- Copy and move folders as usual
+- Rename and delete files directly
+- Manage your media easily without logging into the server
---
-# 📦 Installation Script (Optional)
+## Samba Installation Script (Optional)
-If you want Samba on your server, use the following script:
+If you want Samba, use the supplied installation script:
-👉 **see script:** `scripts/install-samba.sh`
+👉 **See script:** `scripts/install-samba.sh`
-This script:
+This script will:
-* Installs Samba
-* Shares your mounted directories
-* Secures access to your user only (no guest access)
-* Creates Samba credentials
-* Enables the smbd/nmbd daemons
+- Install the Samba server software
+- Share your mounted media directories securely
+- Set up user authentication (no open guest access)
+- Enable Samba system services (`smbd` and `nmbd`) for automatic startup
---
-# 🖥️ Windows Setup — Mapping the Network Drive
+## Accessing Samba Shares from Windows
-Once Samba is active, you can connect from Windows.
+Once Samba is set up and running on your server, you can connect from your Windows computer:
-### 1. Open File Explorer
-
-Press:
-
-```
-Win + E
-```
-
-### 2. Click **This PC**
-
-### 3. Click **Map network drive** in the top ribbon
-
-(If hidden, click the three-dot menu.)
-
-### 4. Choose a drive letter
-
-Example:
-
-```
-Z:
-```
-
-### 5. In the folder field, enter your Samba share
-
-```
-\\\Omnissiah-Vault
-```
-
-Example:
-
-```
-\\192.168.1.50\Omnissiah-Vault
-```
-
-### 6. Check **Reconnect at sign-in**
-
-So Windows auto-remounts the drive.
-
-### 7. Check **Connect using different credentials**
-
-Enter the username and password created during Samba setup:
-
-```
-Username: aetos
-Password:
-```
-
-Click **Finish**.
-
-You should now see the drive appear in Explorer like a normal disk.
-
----
-
-# 🧰 You Can Also Map via Command Line
-
-Open PowerShell and run:
+1. Press `Win + E` to open File Explorer.
+2. Click on **This PC** on the left pane.
+3. Click **Map network drive** from the ribbon menu (or use the three-dot menu if it’s hidden).
+4. Choose a drive letter, such as `Z:`.
+5. Enter the network folder path in this format:
+ ```
+ \\\Omnissiah-Vault
+ ```
+
+ Example:
+
+ ```
+ \\192.168.1.50\Omnissiah-Vault
+ ```
+6. Check **Reconnect at sign-in** to automatically mount the drive each time you log in.
+7. Check **Connect using different credentials** and enter the Samba username/password created during setup. For example:
+ ```
+ Username: aetos
+ Password:
+ ```
+8. Click **Finish**. Your media drive will appear in File Explorer like any normal disk.
+You can also map it via PowerShell:
```
net use Z: \\\Omnissiah-Vault /user:aetos
```
---
-# 🔐 Security Notes
+## Security Tips
-* Samba exposes your filesystem over the network → keep your password strong.
-* Never enable `guest ok = yes` unless you want an open share.
-* Use UFW or firewall-cmd to restrict access if needed.
+- Samba shares your files over the network. Use strong passwords and never enable guest (anonymous) access unless you want an open share.
+- Use firewall tools (UFW, firewall-cmd) to restrict access to trusted devices only.
---
-# 📝 Summary
+## Summary
-Samba is optional but extremely convenient, especially for Windows users.
+Samba is a handy optional addition that makes your media drive easily accessible on Windows and other devices, allowing drag-and-drop ease and manual file management.
-Use it if:
+Choose Samba if you:
+- Want direct, seamless Windows access to media files
+- Regularly manage or adjust files manually
+- Prefer using network shares over command-line or Plex only
-* You manage files manually
-* You want drag-and-drop access to media
-* You want Windows Explorer to treat the server like a normal drive
-
-Skip it if:
-
-* Everything happens via automation
-* You only use Plex and ARR
-* You manage your server exclusively from Linux/Mac
-
----
-
-Proceed to the next step when ready.
+Skip installing Samba if you:
+- Do everything through Plex or media automation apps
+- Manage the server via Linux or macOS only
+- Don’t need manual file access on other devices
diff --git a/tutorials/media-manager/docs/steps/overview.md b/tutorials/media-manager/docs/steps/overview.md
index 88be6f8..81c2b3e 100644
--- a/tutorials/media-manager/docs/steps/overview.md
+++ b/tutorials/media-manager/docs/steps/overview.md
@@ -1,130 +1,151 @@
# Overview
-This page tells the story of what will happen during the Media Manager setup: a clear, step-by-step timeline of actions, goals, and outcomes. Think of it as the "mission plan" — what we do, why we do it, and what success looks like at each stage.
+This page lays out the clear plan for your Media Manager setup—what actions you’ll take, why each step matters, and what
+success looks like along the way. Think of it as your roadmap that guides you from start to finish.
---
-## The goal
+## The Goal
-We'll transform a single Linux host (example: a Raspberry Pi) into a dependable, mostly-automated media management server that:
+We’re turning a single Linux machine (like a Raspberry Pi) into a reliable, mostly hands-off media server that:
-* Downloads TV shows and movies automatically via qBittorrent
-* Uses the ARR stack (Radarr, Sonarr, Prowlarr, Bazarr) to find and manage media
-* Organizes and moves completed downloads into a structured media library
-* Serves your media using Plex Media Server
-* Runs ARR services in Docker for portability and ease of upgrades
+- Automatically downloads TV shows and movies using qBittorrent
+- Uses the powerful ARR stack (Radarr, Sonarr, Prowlarr, Bazarr) to find and manage your media
+- Organizes and moves finished downloads into a tidy media library
+- Streams your media with Plex Media Server
+- Runs ARR apps inside Docker for easy updates and portability
---
-## High-level architecture
+## High-Level Setup Architecture
-* **Host OS**: Linux (Raspberry Pi OS / Ubuntu Server)
-* **Host services**: Docker (engine) + Plex + qBittorrent (native host installs)
-* **Containerized services** (docker-compose): Radarr, Sonarr, Prowlarr, Bazarr, and any auxiliary containers (e.g., file indexers, notifications)
-* **Storage layout**: downloaded files land in `/mnt/downloads`; completed and organized media live in `/mnt/media`; service configurations in `/mnt/config`
+- **Host operating system:** Linux (e.g., Raspberry Pi OS or Ubuntu Server)
+- **Host services:** Docker engine, Plex Media Server, and qBittorrent installed directly on the host
+- **Containerized apps:** Radarr, Sonarr, Prowlarr, Bazarr, and any additional helpers via Docker Compose
+- **Storage layout:**
+ - Downloaded files go to `/mnt/omnissiah-vault/data/media-manager/downloads`
+ - Finished media files live in `/mnt/omnissiah-vault/data/media-manager/media`
+ - App configuration files live under `/mnt/omnissiah-vault/configs/`
---
-## Step-by-step timeline (what will happen)
+## [1) Validate Your System](overview.md)
-Each step below explains the action, the reason, and the expected result.
+**What we do:**
+Verify your operating system, update all critical packages, and set essential system settings like hostname, timezone,
+and network configuration.
-### 1) Validate base system
-
-**Action:** Confirm OS, update packages, set hostname, timezone, and networking.
-**Why:** Ensures reproducible behavior, correct timestamps, and easier network access.
-**Result:** A stable host with SSH enabled and a predictable IP/hostname.
+**What you achieve:**
+A stable and predictable environment with SSH access and a consistent system identity, laying the foundation for
+everything else.
---
-### 2) Prepare and mount storage
+## [2) Prepare Storage and Mount Points](setup-mount-points.md)
-**Action:** Attach external drives (HDD/SSD or network share), create filesystems if needed, and mount them persistently (e.g., `/etc/fstab`). Create top-level folders:
+**What we do:**
+Connect and mount your external drives permanently, create organized folders for media, downloads, and configurations.
-```
-/mnt/media
-/mnt/downloads
-/mnt/config
-```
-
-**Why:** Separates volatile system disk from large media storage and config data; makes backups and maintenance easier.
-**Result:** Durable storage locations that all services will reference.
+**What you achieve:**
+Reliable, durable storage locations cleanly separated from your system disk, making management, backups, and expansions
+easier.
---
-### 3) Install Docker on the host
+## [3) Install Docker](install-docker.md)
-**Action:** Install Docker Engine and docker-compose (or use `docker compose` plugin).
-**Why:** ARR services are containerized for isolation, portability, and simplified updates.
-**Result:** Host ready to run docker-compose stacks.
+**What we do:**
+Install Docker Engine and Docker Compose on your host system.
+
+**What you achieve:**
+A containerized environment ready to host ARR services, optimizing portability, isolation, and simplified updates.
---
-### 4) Install Plex on the host
+## [4) Install Plex on the Host](install-plex.md)
-**Action:** Install Plex Media Server as a host service (native install or package). Configure initial library paths and remote access as needed.
-**Why:** Plex performs heavy I/O and benefits from being on the host where hardware acceleration and direct disk access are easier to configure.
-**Result:** Plex server visible on the network and ready to index `/mnt/media`.
+**What we do:**
+Install Plex Media Server natively, set up initial libraries pointing to your media folders, and configure remote access
+as needed.
+
+**What you achieve:**
+A powerful media streaming service that efficiently accesses and serves your organized media.
---
-### 5) Install qBittorrent on the host
+## [5) Install qBittorrent on the Host](install-qbittorrent.md)
-**Action:** Install and configure qBittorrent (preferably `qbittorrent-nox` for headless use). Set download paths to `/mnt/downloads`. Configure a web UI and credentials.
-**Why:** Torrent client handles downloads; being on the host simplifies mounting and permissions.
-**Result:** qBittorrent runs as a service, accepting search/download requests from ARR services.
+**What we do:**
+Install the headless qBittorrent torrent client, configure it with stable download paths, and set up its web UI for easy
+control.
+
+**What you achieve:**
+A fast, stable, and reliable download engine integrated with the rest of your media automation pipeline.
---
-### 6) Deploy ARR Stack via docker-compose
+## [6) Deploy the ARR Stack via Docker Compose](setup-media-manager.md)
-**Action:** Create a `docker-compose.yml` to run Radarr, Sonarr, Prowlarr, Bazarr (and optional services like bazarr, jackett if needed). Mount config and media/downloads into containers.
-**Why:** Containers give predictable runtime environments and make upgrades simple.
-**Result:** ARR services running and reachable on defined ports (e.g., `:7878` for Radarr, `:8989` for Sonarr).
+**What we do:**
+Start Radarr, Sonarr, Prowlarr, Bazarr, and any optional services in Docker containers, mounting media and config
+volumes properly.
+
+**What you achieve:**
+All core media automation services running in isolated but connected containers, ready to manage your media
+intelligently.
---
-### 7) Integrate ARR with qBittorrent and Plex
+## 7) Integrate ARR with qBittorrent and Plex
-**Action:** In Radarr/Sonarr, add qBittorrent as the download client and Plex for library updates. Configure Prowlarr as the indexer aggregator and link it to Sonarr/Radarr.
-**Why:** This creates an automated chain: indexers → ARR → torrent client → completed move → Plex scan.
-**Result:** A working automation pipeline where new media requests result in downloaded, organized, and indexed media.
+**What we do:**
+Configure Radarr and Sonarr to use qBittorrent as their downloader and Plex as the media library refresher. Link
+Prowlarr as the indexer for search results.
+
+**What you achieve:**
+A seamless automated loop where new media gets found, downloaded, organized, and made available with minimal effort.
---
-### 8) Configure media organization and quality profiles
+## 8) Configure Media Libraries and Quality Profiles
-**Action:** Create library structures (Movies, TV), set naming formats, define quality profiles and root folders in Radarr and Sonarr.
-**Why:** Ensures consistent file naming, reduces duplicates, and keeps libraries tidy for Plex.
-**Result:** Downloads are renamed and moved automatically into `/mnt/media/Movies` and `/mnt/media/TV`.
+**What we do:**
+Set up consistent folder structures, naming schemes, and quality preferences in Radarr and Sonarr for Movies and TV
+shows.
+
+**What you achieve:**
+Neatly named and organized media that Plex can easily scan and serve, improving overall media management quality.
---
-### 9) Verify and test end-to-end flow
+## 9) Test Your Full Setup
-**Action:** Manually request a test show or movie in Sonarr/Radarr, verify it appears in qBittorrent, completes, is moved, and shows up in Plex.
-**Why:** Confirms the full automation loop works and surfaces permission or path issues.
-**Result:** Confirmed working pipeline.
+**What we do:**
+Manually add a test movie or episode, verify it downloads through qBittorrent, is organized by Radarr/Sonarr, and
+appears in Plex.
+
+**What you achieve:**
+Confidence that every part of your automation workflow works smoothly without permission or path issues.
---
-### 10) Backup, maintenance, and monitoring
+## 10) Backup and Maintain
-**Action:** Implement config backups (snapshot `/mnt/config`), schedule regular system updates, and optionally add monitoring (Prometheus/Grafana or simple scripts).
-**Why:** Protects against data loss and keeps services healthy.
-**Result:** Resilient installation with a recovery plan.
+**What we do:**
+Implement regular backups of configuration data, keep the system and Docker updated, and optionally add monitoring tools
+to keep watch on your media server.
+
+**What you achieve:**
+A reliable and maintainable Media Manager system that withstands unforeseen issues and keeps running smoothly.
---
-## Success Criteria — How you’ll know it’s working
+Feel free to follow the linked steps for detailed, easy-to-understand guides. Each part builds on the previous to get
+you from a fresh Linux install to a fully automated media powerhouse.
-* You can add a movie/show to Radarr/Sonarr and see it downloaded automatically.
-* Downloaded files are renamed and relocated to `/mnt/media`.
-* Plex detects new content and makes it available for streaming.
-* Services restart correctly after a reboot and maintain configuration.
+## Ready to begin?
+
+Move on to the **Setup Mount Points** step to prepare your storage structure and permissions
+Go to 👉 **[Setup Mount Points](setup-mount-points.md)**
---
-
-## Next steps
-
-Proceed to the **Setup Mount Points** step to prepare storage paths and permissions: `steps/setup-mount-points.md`.
diff --git a/tutorials/media-manager/docs/steps/setup-media-manager.md b/tutorials/media-manager/docs/steps/setup-media-manager.md
index 93115ef..015894c 100644
--- a/tutorials/media-manager/docs/steps/setup-media-manager.md
+++ b/tutorials/media-manager/docs/steps/setup-media-manager.md
@@ -1,268 +1,160 @@
# ARR Stack Overview and Service Architecture
-This section explains all the applications included in your Media Manager stack, what each one does, how they interact with each other, and how the storage mount points are shared across services.
+This section walks you through all the key applications in your Media Manager stack, explaining what each one does, how
+they work together, and how they share storage space.
-The stack is deployed using a **Docker Compose file**. Instead of pasting the compose inline here, it is referenced directly:
-
-👉 **See the Docker Compose configuration:** `docker-compose.yml`
+Your entire media automation system is deployed with Docker Compose, a tool that manages multiple containers at once.
+Instead of pasting the configuration here, just know it's referenced in the main `docker-compose.yml` file.
---
-# 🌐 The ARR Ecosystem — What Each App Does
+## 🌐 The ARR Ecosystem — What Each App Does
-Your media automation pipeline consists of several specialized services. Each one has a dedicated role, and together they form a complete end‑to‑end system.
-
-Below is a clear breakdown.
+Think of your media setup as a team of specialists, each with a clear role. Together, they automate finding,
+downloading, organizing, and streaming your media smoothly.
---
-## 🧭 Prowlarr — The Indexer Aggregator
+### 🧭 Prowlarr — The Indexer Aggregator
-Prowlarr acts as the central hub for all indexers (public, private, torrent, NZB).
+Prowlarr is the brain behind finding new media. It connects to many torrent and NZB indexers (sites listing available
+movies and shows) and collects results from them.
-**Responsibilities:**
-
-* Connects to multiple indexers
-* Provides unified indexer results to Radarr & Sonarr
-* Manages API keys, categories, indexer syncing
-
-**Why it’s important:**
-Without Prowlarr, you would configure indexers separately in each application — a massive duplication of work.
-
-**How it talks to others:**
-
-* Sends torrent results → Radarr/Sonarr
-* Receives indexer categories from them
+- It sends these results to Radarr and Sonarr so they know about new movies or episodes.
+- It keeps all your indexers synced in one place, saving you from having to set them up repeatedly.
---
-## 🎬 Radarr — Automated Movie Management
+### 🎬 Radarr — Automated Movie Management
-Radarr handles **movie** automation.
+Radarr handles your movie collection.
-**Responsibilities:**
-
-* Monitor movie requests
-* Fetch releases from indexers via Prowlarr
-* Trigger downloads via qBittorrent
-* Rename, sort, and move completed files into the Movies directory
-* Update Plex libraries
-
-**How it talks to others:**
-
-* Index results from Prowlarr
-* Sends download requests to qBittorrent
-* Notifies Plex to refresh libraries
-* Provides subtitles to Bazarr (optional)
+- It tracks movie releases and tells qBittorrent what to download.
+- After the download finishes, Radarr renames, organizes, and moves the movie files to your library folder.
+- It also notifies Plex so your library stays updated.
---
-## 📺 Sonarr — Automated TV Show Management
+### 📺 Sonarr — Automated TV Show Management
-Sonarr is the TV equivalent of Radarr.
+Sonarr does essentially the same job as Radarr, but for TV shows.
-**Responsibilities:**
-
-* Track TV episodes (past and future)
-* Upgrade quality automatically
-* Send downloads to qBittorrent
-* Rename and organize episodes
-
-**How it talks to others:**
-
-* Index results from Prowlarr
-* Send downloads to qBittorrent
-* Sync subtitle requests with Bazarr
+- Monitors episodes (current and upcoming) and fetches via qBittorrent.
+- Handles organizing episodes and renaming files consistently.
+- Updates Plex similar to Radarr.
---
-## 💬 Bazarr — Subtitle Management Service
+### 💬 Bazarr — Subtitle Management Service
-Bazarr automatically finds and downloads subtitles.
+Bazarr works alongside Radarr and Sonarr to handle subtitles.
-**Responsibilities:**
-
-* Sync with Radarr and Sonarr
-* Fetch subtitles in desired languages
-* Store subtitles next to their respective media files
-
-**How it talks to others:**
-
-* Reads Radarr/Sonarr libraries
-* Writes subtitle files directly inside `/data/media/...`
+- Automatically searches for subtitles in the languages you want.
+- Saves these subtitle files right next to your media, so Plex and your devices can use them seamlessly.
---
-## 🎟️ Jellyseerr — Request Management Portal
+### 🎟️ Jellyseerr — User Request Portal
-Jellyseerr is the user-facing request dashboard.
+Jellyseerr provides a friendly interface where users can request movies or TV shows.
-**Responsibilities:**
-
-* Users request movies or shows
-* Requests are forwarded automatically to Radarr/Sonarr
-* Designed for multi-user setups
-
-**How it talks to others:**
-
-* Communicates with Radarr/Sonarr via API
-* Shows availability status using Plex integration
+- Requests get automatically passed to Radarr or Sonarr.
+- Useful if multiple people want to manage requests easily.
+- Integrates with Plex to show what’s available.
---
-## 📨 Ombi — Alternative Request Management
+### 📨 Ombi — Alternative Request Management
-Ombi is similar to Jellyseerr, with some different UI and features.
+Ombi offers similar features to Jellyseerr but with a different look and some unique options.
-**Responsibilities:**
-
-* Allows users to request media
-* Integrates with Radarr and Sonarr
-* Sends notifications
-
-Some prefer Jellyseerr, others prefer Ombi — you can run both.
+- You can choose either or even run both if you want.
---
-# 🧱 How These Services Are Connected
+## 🧱 How These Services Connect
-### Central Flow Diagram (conceptual)
+Here’s a simple flow to understand their interaction:
-```
-Jellyseerr/Ombi → Radarr/Sonarr ← Prowlarr
- ↓
- qBittorrent (host)
- ↓
- Organized media library
- ↓
- Plex
- ↓
- Clients
-```
+User Requests (via Jellyseerr/Ombi)
+↓
+Radarr & Sonarr
+↓
+Prowlarr provides index results
+↓
+qBittorrent (host) downloads files
+↓
+Organized media library (on shared storage)
+↓
+Plex streams content
+↓
+Clients (your devices)
-### Key Points:
-
-* **Prowlarr provides indexer data** to both Radarr and Sonarr
-* **Radarr/Sonarr send download requests** to qBittorrent (host)
-* **qBittorrent stores downloads** into the shared mounted folders
-* **Radarr/Sonarr import, rename, and move** completed media into `/data/media/...`
-* **Plex sees updated libraries** and refreshes
-* **Bazarr fetches subtitles** and writes them next to the media
-
-All Docker apps talk to host apps using:
-
-```
-host.docker.internal:host-gateway
-```
-
-This ensures containers can reach qBittorrent and Plex.
+- Prowlarr feeds torrent information to Radarr and Sonarr.
+- Radarr and Sonarr initiate downloads in qBittorrent running on your host.
+- qBittorrent saves the media to storage mounted by all services.
+- Radarr and Sonarr rename and organize media as it completes.
+- Plex scans the media folders to show up-to-date content.
+- Bazarr adds subtitles automatically to the media files.
---
-# 🗄️ Volume Mount Strategy
+## 🗄️ Shared Storage and Docker Volumes
-All apps share a **standardized mount point** inside containers:
+To keep things tidy and avoid confusion, all Docker services use the same folder structure inside their containers under
+`/data`. This path points to your real media folders on the host, typically `/mnt/omnissiah-vault/data/media-manager`.
-```
-/data
-```
+Each service also stores its settings (config files) in their own dedicated folders on the external drive, persisting
+beyond container restarts:
-Outside the container, this maps to:
+| Service | Config Path on Host | Mounted To in Container |
+|------------|-------------------------------------------|-------------------------|
+| Radarr | `/mnt/omnissiah-vault/configs/radarr` | `/config` |
+| Sonarr | `/mnt/omnissiah-vault/configs/sonarr` | `/config` |
+| Prowlarr | `/mnt/omnissiah-vault/configs/prowlarr` | `/config` |
+| Bazarr | `/mnt/omnissiah-vault/configs/bazarr` | `/config` |
+| Jellyseerr | `/mnt/omnissiah-vault/configs/jellyseerr` | `/app/config` |
+| Ombi | `/mnt/omnissiah-vault/configs/ombi` | `/config` |
-```
-/mnt/omnissiah-vault/data/media-manager
-```
-
-This ensures:
-
-* Radarr, Sonarr, Bazarr all see the **same folder structure**
-* No path translation issues between apps
-* Clean docker-compose configuration
-
-### Example Inside Containers
-
-```
-/data/media/movies
-/data/media/tv
-/data/downloads
-```
+This organization keeps your media and service configurations cleanly separated and easy to backup or migrate.
---
-# 🗂️ Config Directory Mounts
+## 🔧 Docker Networking
-Each service stores its settings inside Docker volumes mapped to persistent directories.
-
-### Radarr
-
-```
-/mnt/omnissiah-vault/configs/radarr → /config
-```
-
-### Sonarr
-
-```
-/mnt/omnissiah-vault/configs/sonarr → /config
-```
-
-### Prowlarr
-
-```
-/mnt/omnissiah-vault/configs/prowlarr → /config
-```
-
-### Bazarr
-
-```
-/mnt/omnissiah-vault/configs/bazarr → /config
-```
-
-### Jellyseerr
-
-```
-/mnt/omnissiah-vault/configs/jellyseerr → /app/config
-```
-
-### Ombi
-
-```
-/mnt/omnissiah-vault/configs/ombi → /config
-```
-
-All containers get persistent configuration that survives updates.
+All ARR stack containers are connected on a private Docker network called `media-net`. This network allows them to talk
+to each other internally, without exposing all services to your regular home network. For host-based services like
+qBittorrent and Plex, container apps reach them via special host addresses.
---
-# 🔧 Docker Networking
+## 🚀 Summary
-All ARR services join the same Docker network:
+Your Media Manager ARR stack is a carefully connected set of services:
-```
-media-net
-```
+- **Prowlarr** centralizes media indexers.
+- **Radarr and Sonarr** manage movies and TV shows, respectively.
+- **qBittorrent** on your host downloads the media files.
+- **Bazarr** provides subtitles automatically.
+- **Jellyseerr or Ombi** lets users request new content.
+- **Plex** streams your organized media to your devices.
-This provides:
-
-* Internal communication
-* Isolated service space
-* Avoids exposing containers unintentionally
+They share data neatly through a standardized storage path and communicate over a private Docker network for smooth
+operation.
---
-# 🚀 Summary
+## Optional: Accessing Your Media via Samba Network Share
-Your ARR stack consists of:
+If you want to access your external HDD directly from other devices on your network—like Windows PCs, Macs, or mobile
+devices—you can set up Samba. Samba allows you to share your media folders as network drives, making it easy to browse,
+add, or manage files without logging into your server.
-* **Prowlarr** for indexers
-* **Sonarr** for TV
-* **Radarr** for movies
-* **Bazarr** for subtitles
-* **Jellyseerr or Ombi** for request management
+This is especially useful if you prefer managing files directly or want seamless integration with devices that don’t
+support network streaming apps.
-They connect using APIs, communicate through a private Docker network, and share a unified `/data` folder that maps to your mounted storage.
-
-This architecture keeps everything predictable, reproducible, and easy to maintain.
+You can find the step-by-step Samba installation and configuration instructions here:
+Go to👉 **[Install Samba](install-samba.md)**
---
-Next: Proceed to configure each service inside their Web UIs.
diff --git a/tutorials/media-manager/docs/steps/setup-mount-points.md b/tutorials/media-manager/docs/steps/setup-mount-points.md
index 78d6c01..b0c6485 100644
--- a/tutorials/media-manager/docs/steps/setup-mount-points.md
+++ b/tutorials/media-manager/docs/steps/setup-mount-points.md
@@ -1,19 +1,21 @@
# Understanding Mounting, File Systems, and Choosing Between EXT4 vs NTFS
-Before we bind our drives and awaken the Machine Spirits, it’s important to understand **what mounting is**, **what file systems are**, and **why we choose EXT4 or NTFS** depending on how the drive will be used.
+Before we connect our drives and get everything ready, it’s important to understand **what mounting is**, **what a file
+system is**, and **why we choose either EXT4 or NTFS** depending on how you'll use your storage.
-This page explains everything in simple terms so beginners can follow confidently.
+This page explains these concepts in simple terms so beginners can follow with confidence.
---
## 🧩 What Does “Mounting” Mean?
-On Linux, storage devices like HDDs, SSDs, or USB drives **do not automatically appear as folders**.
-Instead, the operating system must *mount* them — meaning:
+On Linux, storage devices like HDDs, SSDs, or USB drives **don’t automatically appear as folders** when plugged in.
+Instead, the operating system *attaches* or *mounts* them to a folder—meaning:
-### **Mounting = attaching a physical drive to a folder on the filesystem.**
+### **Mounting = attaching a drive to a folder in the filesystem**
For example:
+
```
Device: /dev/sda1
Mounted at: /mnt/omnissiah-vault
@@ -21,31 +23,31 @@ Mounted at: /mnt/omnissiah-vault
Once mounted:
-- The drive becomes accessible through that folder
+- The drive is accessible through that folder path
- Applications can read/write files there
-- You can organize media, downloads, and configuration data
+- You can organize your media, downloads, and settings
-If the drive is *not mounted*, nothing can access it—even if Linux sees the hardware.
+If the drive isn’t mounted, Linux can see the hardware but won’t be able to access the data stored on it.
---
## 📘 Why We Use `/mnt/…`
-Linux keeps the system organized using conventions:
+Linux organizes storage under specific folders:
-| Path | Purpose |
-|------|---------|
-| `/home` | User home folders |
-| `/root` | Root account home |
-| `/etc` | System configuration |
-| `/mnt` | Drives mounted by the user/admin |
+| Path | Purpose |
+|---------|-------------------------------------|
+| `/home` | User’s personal files |
+| `/root` | Root user’s files |
+| `/etc` | System configuration files |
+| `/mnt` | External drives mounted by the user |
+
+We typically mount drives in `/mnt` to keep things organized, for example:
-We follow the Linux standard by mounting drives under:
```
/mnt/omnissiah-vault
```
-
This makes it clear that the drive is external storage, not part of the system root.
---
@@ -69,36 +71,38 @@ Two major file systems matter for media management:
Below is a simple, clear comparison.
-| Feature | EXT4 (Linux Native) | NTFS (Windows Native) |
-|--------|----------------------|------------------------|
-| Best OS support | Linux | Windows |
-| Performance on Linux | ⭐⭐⭐⭐ Fast | ⭐ Slow (requires NTFS-3G driver) |
-| Supports Linux permissions (chmod, chown) | ✔ Yes | ❌ No (emulated) |
-| Good for Plex & ARR stack | ✔ Best choice | ✔ Works but slower |
-| Reliability | ⭐⭐⭐⭐⭐ Excellent | ⭐⭐⭐ Good |
-| 4K/large drive support | ✔ Yes | ✔ Yes |
-| Automatic mounting | Easy | Slightly more complex |
-| Ideal use case | Permanent Linux storage | External drive shared with Windows |
+| Feature | EXT4 (Linux Native) | NTFS (Windows Native) |
+|-------------------------------------------|-------------------------|------------------------------------|
+| Best OS support | Linux | Windows |
+| Performance on Linux | ⭐⭐⭐⭐ Fast | ⭐ Slow (requires NTFS-3G driver) |
+| Supports Linux permissions (chmod, chown) | ✔ Yes | ❌ No (emulated) |
+| Good for Plex & ARR stack | ✔ Best choice | ✔ Works but slower |
+| Reliability | ⭐⭐⭐⭐⭐ Excellent | ⭐⭐⭐ Good |
+| 4K/large drive support | ✔ Yes | ✔ Yes |
+| Automatic mounting | Easy | Slightly more complex |
+| Ideal use case | Permanent Linux storage | External drive shared with Windows |
+
+### ✔ **Choose EXT4 if the drive stays connected to your Raspberry Pi/Linux system.**
-### ✔ **Choose EXT4 if the drive stays connected to your Raspberry Pi/Linux system.**
This is the recommended choice for **media servers**, **Plex**, and **qBittorrent** because:
-- It’s faster
-- Uses native permissions
-- More stable
-- Less CPU overhead
-- Easier integration with Docker
+- It’s faster
+- Uses native permissions
+- More stable
+- Less CPU overhead
+- Easier integration with Docker
### ✔ **Choose NTFS only if the drive must also be used on Windows.**
For example:
-- You physically unplug the drive and connect it to a Windows PC
-- You want to browse the media on Windows without a network share
+- You physically unplug the drive and connect it to a Windows PC
+- You want to browse the media on Windows without a network share
---
-## 🪟 Accessing an EXT4 Drive on Windows?
+## 🪟 Accessing an EXT4 Drive on Windows?
+
EXT4 cannot be read by Windows *natively*.
However, **this is not a problem**, because:
@@ -116,7 +120,8 @@ We will configure Samba later in an optional section:
---
-## 📥 Choose Your Mounting Ritual
+## 📥 Choose Your Mounting Ritual
+
Below are two scripts — pick one based on your file system choice.
### 🟦 EXT4 Mounting Ritual (Recommended)
@@ -141,16 +146,14 @@ Below are two scripts — pick one based on your file system choice.
Once you choose your file system and run the ritual script:
-1. Your mount point will be created
-2. `/etc/fstab` will be updated for automatic mounting
-3. The drive will appear under `/mnt/omnissiah-vault`
-4. Subdirectories (movies, tv-shows, downloads, etc.) will be generated
+1. Your mount point will be created
+2. `/etc/fstab` will be updated for automatic mounting
+3. The drive will appear under `/mnt/omnissiah-vault`
+4. Subdirectories (movies, tv-shows, downloads, etc.) will be generated
## Next steps
-Proceed to the **Setup Mount Points** step to prepare storage paths and permissions: `steps/setup-mount-points.md`.
-
-👉 **Install Docker**
-with all your directory paths standardized and ready for the media automation pipeline.
+Proceed to the **Install Docker** step to prepare docker for media management.
+Go to 👉 **[Install Docker](install-docker.md)**
---
--
2.49.1
From 1f8f316c0b462d99e15bbd58981176b258416a86 Mon Sep 17 00:00:00 2001
From: Vishesh 'ironeagle' Bangotra
Date: Thu, 20 Nov 2025 22:11:33 +0530
Subject: [PATCH 06/14] minor cleanups
---
.../docs/steps/install-docker.md | 10 ++++-----
.../media-manager/docs/steps/install-plex.md | 2 +-
.../docs/steps/install-qbittorrent.md | 6 ++---
.../media-manager/docs/steps/install-samba.md | 12 +++++-----
.../media-manager/docs/steps/overview.md | 22 +++++++++----------
.../docs/steps/setup-mount-points.md | 4 ++--
6 files changed, 27 insertions(+), 29 deletions(-)
diff --git a/tutorials/media-manager/docs/steps/install-docker.md b/tutorials/media-manager/docs/steps/install-docker.md
index 281b2da..949d38f 100644
--- a/tutorials/media-manager/docs/steps/install-docker.md
+++ b/tutorials/media-manager/docs/steps/install-docker.md
@@ -67,9 +67,9 @@ Within Docker, qBittorrent faces problems like:
| Inconsistent paths | Container paths differ from host paths |
| Poor integration | Radarr/Sonarr struggles with Docker paths |
-### Conclusion:
+**Conclusion:**
-Running qBittorrent directly on the host is faster, more reliable, and simpler.
+- Running qBittorrent directly on the host is faster, more reliable, and simpler.
---
@@ -84,9 +84,9 @@ Plex relies on:
| Network discovery (multicast/IGMP) | Blocked or isolated inside containers |
| Handling millions of metadata files | Poor container filesystem performance |
-### Conclusion:
+**Conclusion:**
-Plex runs best on the host machine for speed, compatibility, and stable transcoding.
+- Plex runs best on the host machine for speed, compatibility, and stable transcoding.
---
@@ -152,7 +152,7 @@ Once rebooted, your system will be ready to run containerized ARR services.
---
-## 🚀 Next Step: Install Plex on the Host
+## ➡️ Next Step: Install Plex on the Host
Once Docker is installed, move on to installing Plex directly on the host to ensure your server is ready to stream media
as the ARR stack populates your libraries.
diff --git a/tutorials/media-manager/docs/steps/install-plex.md b/tutorials/media-manager/docs/steps/install-plex.md
index fd3a273..ddc659a 100644
--- a/tutorials/media-manager/docs/steps/install-plex.md
+++ b/tutorials/media-manager/docs/steps/install-plex.md
@@ -70,7 +70,7 @@ If this data stays on your system SD card or root SSD (e.g., `/var/lib/plexmedia
- SD cards may wear out prematurely
- Plex performance will degrade
-### ✔ Store metadata on your external HDD to:
+### ✔ Store metadata on your external HDD
- Access large, fast storage
- Protect your OS drive from filling
diff --git a/tutorials/media-manager/docs/steps/install-qbittorrent.md b/tutorials/media-manager/docs/steps/install-qbittorrent.md
index 398b91f..a6a85ca 100644
--- a/tutorials/media-manager/docs/steps/install-qbittorrent.md
+++ b/tutorials/media-manager/docs/steps/install-qbittorrent.md
@@ -55,9 +55,9 @@ issues:
- Download speeds, disk writes, and hashing all run faster without Docker’s overhead
-### ✔ Conclusion:
+**Conclusion:**
-**qBittorrent performs best installed directly on the host system.**
+- **qBittorrent performs best installed directly on the host system.**
---
@@ -113,8 +113,6 @@ password: adminadmin
**Change your password on first login!**
-Next steps:
-
- Configure download directories
- Add categories such as `movies` and `tv`
- Disable any unwanted torrenting features
diff --git a/tutorials/media-manager/docs/steps/install-samba.md b/tutorials/media-manager/docs/steps/install-samba.md
index dfacfb9..6c6cada 100644
--- a/tutorials/media-manager/docs/steps/install-samba.md
+++ b/tutorials/media-manager/docs/steps/install-samba.md
@@ -51,11 +51,7 @@ This means in Windows:
---
-## Samba Installation Script (Optional)
-
-If you want Samba, use the supplied installation script:
-
-👉 **See script:** `scripts/install-samba.sh`
+## ⚙️ Installation Script
This script will:
@@ -64,9 +60,13 @@ This script will:
- Set up user authentication (no open guest access)
- Enable Samba system services (`smbd` and `nmbd`) for automatic startup
+### 📥 Download Script
+
+👉 **[install-samba.sh](../scripts/shell/install-samba.sh)**
+
---
-## Accessing Samba Shares from Windows
+## 🚀 After Installation
Once Samba is set up and running on your server, you can connect from your Windows computer:
diff --git a/tutorials/media-manager/docs/steps/overview.md b/tutorials/media-manager/docs/steps/overview.md
index 81c2b3e..bf49b34 100644
--- a/tutorials/media-manager/docs/steps/overview.md
+++ b/tutorials/media-manager/docs/steps/overview.md
@@ -29,7 +29,7 @@ We’re turning a single Linux machine (like a Raspberry Pi) into a reliable, mo
---
-## [1) Validate Your System](overview.md)
+## 🔍 [1) Validate Your System](overview.md)
**What we do:**
Verify your operating system, update all critical packages, and set essential system settings like hostname, timezone,
@@ -41,7 +41,7 @@ everything else.
---
-## [2) Prepare Storage and Mount Points](setup-mount-points.md)
+## 💾 [2) Prepare Storage and Mount Points](setup-mount-points.md)
**What we do:**
Connect and mount your external drives permanently, create organized folders for media, downloads, and configurations.
@@ -52,7 +52,7 @@ easier.
---
-## [3) Install Docker](install-docker.md)
+## 🐳 [3) Install Docker](install-docker.md)
**What we do:**
Install Docker Engine and Docker Compose on your host system.
@@ -62,7 +62,7 @@ A containerized environment ready to host ARR services, optimizing portability,
---
-## [4) Install Plex on the Host](install-plex.md)
+## 🎬 [4) Install Plex on the Host](install-plex.md)
**What we do:**
Install Plex Media Server natively, set up initial libraries pointing to your media folders, and configure remote access
@@ -73,7 +73,7 @@ A powerful media streaming service that efficiently accesses and serves your org
---
-## [5) Install qBittorrent on the Host](install-qbittorrent.md)
+## 🧲 [5) Install qBittorrent on the Host](install-qbittorrent.md)
**What we do:**
Install the headless qBittorrent torrent client, configure it with stable download paths, and set up its web UI for easy
@@ -84,7 +84,7 @@ A fast, stable, and reliable download engine integrated with the rest of your me
---
-## [6) Deploy the ARR Stack via Docker Compose](setup-media-manager.md)
+## 🧱 [6) Deploy the ARR Stack via Docker Compose](setup-media-manager.md)
**What we do:**
Start Radarr, Sonarr, Prowlarr, Bazarr, and any optional services in Docker containers, mounting media and config
@@ -96,7 +96,7 @@ intelligently.
---
-## 7) Integrate ARR with qBittorrent and Plex
+## 🔗 7) Integrate ARR with qBittorrent and Plex
**What we do:**
Configure Radarr and Sonarr to use qBittorrent as their downloader and Plex as the media library refresher. Link
@@ -107,7 +107,7 @@ A seamless automated loop where new media gets found, downloaded, organized, and
---
-## 8) Configure Media Libraries and Quality Profiles
+## 🗂️ 8) Configure Media Libraries and Quality Profiles
**What we do:**
Set up consistent folder structures, naming schemes, and quality preferences in Radarr and Sonarr for Movies and TV
@@ -118,7 +118,7 @@ Neatly named and organized media that Plex can easily scan and serve, improving
---
-## 9) Test Your Full Setup
+## 🚀 9) Test Your Full Setup
**What we do:**
Manually add a test movie or episode, verify it downloads through qBittorrent, is organized by Radarr/Sonarr, and
@@ -129,7 +129,7 @@ Confidence that every part of your automation workflow works smoothly without pe
---
-## 10) Backup and Maintain
+## 🛡️ 10) Backup and Maintain
**What we do:**
Implement regular backups of configuration data, keep the system and Docker updated, and optionally add monitoring tools
@@ -143,7 +143,7 @@ A reliable and maintainable Media Manager system that withstands unforeseen issu
Feel free to follow the linked steps for detailed, easy-to-understand guides. Each part builds on the previous to get
you from a fresh Linux install to a fully automated media powerhouse.
-## Ready to begin?
+## 🚪Ready to begin?
Move on to the **Setup Mount Points** step to prepare your storage structure and permissions
Go to 👉 **[Setup Mount Points](setup-mount-points.md)**
diff --git a/tutorials/media-manager/docs/steps/setup-mount-points.md b/tutorials/media-manager/docs/steps/setup-mount-points.md
index b0c6485..e41d8e4 100644
--- a/tutorials/media-manager/docs/steps/setup-mount-points.md
+++ b/tutorials/media-manager/docs/steps/setup-mount-points.md
@@ -12,7 +12,7 @@ This page explains these concepts in simple terms so beginners can follow with c
On Linux, storage devices like HDDs, SSDs, or USB drives **don’t automatically appear as folders** when plugged in.
Instead, the operating system *attaches* or *mounts* them to a folder—meaning:
-### **Mounting = attaching a drive to a folder in the filesystem**
+**Mounting = attaching a drive to a folder in the filesystem**
For example:
@@ -151,7 +151,7 @@ Once you choose your file system and run the ritual script:
3. The drive will appear under `/mnt/omnissiah-vault`
4. Subdirectories (movies, tv-shows, downloads, etc.) will be generated
-## Next steps
+## ➡️ Next Step: Install Docker
Proceed to the **Install Docker** step to prepare docker for media management.
Go to 👉 **[Install Docker](install-docker.md)**
--
2.49.1
From 461991fb5a3ff0c8687e8722dc60ca4b4601d358 Mon Sep 17 00:00:00 2001
From: Vishesh 'ironeagle' Bangotra
Date: Thu, 20 Nov 2025 22:14:37 +0530
Subject: [PATCH 07/14] icon change
---
tutorials/media-manager/mkdocs.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tutorials/media-manager/mkdocs.yml b/tutorials/media-manager/mkdocs.yml
index 8090f93..5cdbdd1 100644
--- a/tutorials/media-manager/mkdocs.yml
+++ b/tutorials/media-manager/mkdocs.yml
@@ -44,7 +44,7 @@ theme:
primary: blue grey # Main color
accent: teal # Highlight color
icon:
- logo: material/database # DB Icon
+ logo: material/television # DB Icon
repo: fontawesome/brands/github
font:
text: Roboto
--
2.49.1
From 638271b04abe0ddd9da486aac7afefee97e7ce69 Mon Sep 17 00:00:00 2001
From: Vishesh 'ironeagle' Bangotra
Date: Thu, 20 Nov 2025 22:18:27 +0530
Subject: [PATCH 08/14] comment fix
---
nginx.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nginx.conf b/nginx.conf
index 5ad25cf..27ba7e2 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -14,7 +14,7 @@ server {
index index.html;
}
- # Explicit location for /mongo-ops/
+ # Explicit location for /api/blog/
location /api/blog/ {
root /usr/share/nginx/html;
index index.html;
--
2.49.1
From 3538634706761e30cba9a98abb1b97ca1acff0c1 Mon Sep 17 00:00:00 2001
From: Vishesh 'ironeagle' Bangotra
Date: Thu, 20 Nov 2025 22:20:42 +0530
Subject: [PATCH 09/14] comment fix
---
Dockerfile | 2 --
1 file changed, 2 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 9203a74..5a47e47 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,8 +10,6 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf
# Copy all project docs
# Expected folder layout (on build context):
-# ./_index/
-# ./mongo-ops/site/
COPY ./_index /usr/share/nginx/html/
COPY ./mongo-ops/site /usr/share/nginx/html/mongo-ops/
COPY ./blog-api/site /usr/share/nginx/html/api/blog/
--
2.49.1
From acfcc0c41ba5c74e4583abeb06d3e0b2a89a9a09 Mon Sep 17 00:00:00 2001
From: Vishesh 'ironeagle' Bangotra
Date: Thu, 20 Nov 2025 22:22:35 +0530
Subject: [PATCH 10/14] added docs for media-manager tutorial
---
tutorials/media-manager/site/404.html | 573 ++
.../site/assets/images/favicon.png | Bin 0 -> 1870 bytes
.../assets/javascripts/bundle.f55a23d4.min.js | 16 +
.../javascripts/bundle.f55a23d4.min.js.map | 7 +
.../javascripts/lunr/min/lunr.ar.min.js | 1 +
.../javascripts/lunr/min/lunr.da.min.js | 18 +
.../javascripts/lunr/min/lunr.de.min.js | 18 +
.../javascripts/lunr/min/lunr.du.min.js | 18 +
.../javascripts/lunr/min/lunr.el.min.js | 1 +
.../javascripts/lunr/min/lunr.es.min.js | 18 +
.../javascripts/lunr/min/lunr.fi.min.js | 18 +
.../javascripts/lunr/min/lunr.fr.min.js | 18 +
.../javascripts/lunr/min/lunr.he.min.js | 1 +
.../javascripts/lunr/min/lunr.hi.min.js | 1 +
.../javascripts/lunr/min/lunr.hu.min.js | 18 +
.../javascripts/lunr/min/lunr.hy.min.js | 1 +
.../javascripts/lunr/min/lunr.it.min.js | 18 +
.../javascripts/lunr/min/lunr.ja.min.js | 1 +
.../javascripts/lunr/min/lunr.jp.min.js | 1 +
.../javascripts/lunr/min/lunr.kn.min.js | 1 +
.../javascripts/lunr/min/lunr.ko.min.js | 1 +
.../javascripts/lunr/min/lunr.multi.min.js | 1 +
.../javascripts/lunr/min/lunr.nl.min.js | 18 +
.../javascripts/lunr/min/lunr.no.min.js | 18 +
.../javascripts/lunr/min/lunr.pt.min.js | 18 +
.../javascripts/lunr/min/lunr.ro.min.js | 18 +
.../javascripts/lunr/min/lunr.ru.min.js | 18 +
.../javascripts/lunr/min/lunr.sa.min.js | 1 +
.../lunr/min/lunr.stemmer.support.min.js | 1 +
.../javascripts/lunr/min/lunr.sv.min.js | 18 +
.../javascripts/lunr/min/lunr.ta.min.js | 1 +
.../javascripts/lunr/min/lunr.te.min.js | 1 +
.../javascripts/lunr/min/lunr.th.min.js | 1 +
.../javascripts/lunr/min/lunr.tr.min.js | 18 +
.../javascripts/lunr/min/lunr.vi.min.js | 1 +
.../javascripts/lunr/min/lunr.zh.min.js | 1 +
.../site/assets/javascripts/lunr/tinyseg.js | 206 +
.../site/assets/javascripts/lunr/wordcut.js | 6708 +++++++++++++++++
.../workers/search.973d3a69.min.js | 42 +
.../workers/search.973d3a69.min.js.map | 7 +
.../assets/stylesheets/main.84d31ad4.min.css | 1 +
.../stylesheets/main.84d31ad4.min.css.map | 1 +
.../stylesheets/palette.06af60db.min.css | 1 +
.../stylesheets/palette.06af60db.min.css.map | 1 +
.../site/getting-started/index.html | 802 ++
tutorials/media-manager/site/index.html | 800 ++
.../site/scripts/docker/docker-compose.yaml | 192 +
.../site/scripts/shell/install-docker.sh | 42 +
.../site/scripts/shell/install-plex.sh | 49 +
.../site/scripts/shell/install-qbittorrent.sh | 44 +
.../site/scripts/shell/install-samba.sh | 99 +
.../scripts/shell/setup-mount-points/ext4.sh | 128 +
.../scripts/shell/setup-mount-points/ntfs.sh | 136 +
.../site/search/search_index.json | 1 +
tutorials/media-manager/site/sitemap.xml | 3 +
tutorials/media-manager/site/sitemap.xml.gz | Bin 0 -> 127 bytes
.../site/steps/install-docker/index.html | 948 +++
.../site/steps/install-plex/index.html | 850 +++
.../site/steps/install-qbittorrent/index.html | 858 +++
.../site/steps/install-samba/index.html | 796 ++
.../site/steps/overview/index.html | 860 +++
.../site/steps/setup-media-manager/index.html | 907 +++
.../site/steps/setup-mount-points/index.html | 836 ++
63 files changed, 16201 insertions(+)
create mode 100644 tutorials/media-manager/site/404.html
create mode 100644 tutorials/media-manager/site/assets/images/favicon.png
create mode 100644 tutorials/media-manager/site/assets/javascripts/bundle.f55a23d4.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/bundle.f55a23d4.min.js.map
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.ar.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.da.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.de.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.du.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.el.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.es.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.fi.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.fr.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.he.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.hi.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.hu.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.hy.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.it.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.ja.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.jp.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.kn.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.ko.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.multi.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.nl.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.no.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.pt.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.ro.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.ru.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.sa.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.sv.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.ta.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.te.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.th.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.tr.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.vi.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/min/lunr.zh.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/tinyseg.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/lunr/wordcut.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/workers/search.973d3a69.min.js
create mode 100644 tutorials/media-manager/site/assets/javascripts/workers/search.973d3a69.min.js.map
create mode 100644 tutorials/media-manager/site/assets/stylesheets/main.84d31ad4.min.css
create mode 100644 tutorials/media-manager/site/assets/stylesheets/main.84d31ad4.min.css.map
create mode 100644 tutorials/media-manager/site/assets/stylesheets/palette.06af60db.min.css
create mode 100644 tutorials/media-manager/site/assets/stylesheets/palette.06af60db.min.css.map
create mode 100644 tutorials/media-manager/site/getting-started/index.html
create mode 100644 tutorials/media-manager/site/index.html
create mode 100644 tutorials/media-manager/site/scripts/docker/docker-compose.yaml
create mode 100644 tutorials/media-manager/site/scripts/shell/install-docker.sh
create mode 100644 tutorials/media-manager/site/scripts/shell/install-plex.sh
create mode 100644 tutorials/media-manager/site/scripts/shell/install-qbittorrent.sh
create mode 100644 tutorials/media-manager/site/scripts/shell/install-samba.sh
create mode 100644 tutorials/media-manager/site/scripts/shell/setup-mount-points/ext4.sh
create mode 100644 tutorials/media-manager/site/scripts/shell/setup-mount-points/ntfs.sh
create mode 100644 tutorials/media-manager/site/search/search_index.json
create mode 100644 tutorials/media-manager/site/sitemap.xml
create mode 100644 tutorials/media-manager/site/sitemap.xml.gz
create mode 100644 tutorials/media-manager/site/steps/install-docker/index.html
create mode 100644 tutorials/media-manager/site/steps/install-plex/index.html
create mode 100644 tutorials/media-manager/site/steps/install-qbittorrent/index.html
create mode 100644 tutorials/media-manager/site/steps/install-samba/index.html
create mode 100644 tutorials/media-manager/site/steps/overview/index.html
create mode 100644 tutorials/media-manager/site/steps/setup-media-manager/index.html
create mode 100644 tutorials/media-manager/site/steps/setup-mount-points/index.html
diff --git a/tutorials/media-manager/site/404.html b/tutorials/media-manager/site/404.html
new file mode 100644
index 0000000..0033bb7
--- /dev/null
+++ b/tutorials/media-manager/site/404.html
@@ -0,0 +1,573 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Media Manager Tutorial
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+