{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Media Manager Setup Guide","text":"

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\u2014from downloading to organizing and streaming.

"},{"location":"#whats-inside","title":"What\u2019s Inside","text":"

You\u2019ll learn how to use:

"},{"location":"#what-you-will-build","title":"\ud83d\udcda What You Will Build","text":"

By following this guide, you\u2019ll create a powerful and hands-off media setup that can:

"},{"location":"#components-overview","title":"\ud83d\udcc1 Components Overview","text":"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."},{"location":"#quick-navigation","title":"\ud83d\ude80 Quick Navigation","text":"

Jump directly to any part of the guide:

Section What\u2019s Covered Getting Started Prerequisites, operating system, and network overview Overview A bird\u2019s-eye view of the whole process Setup Mount Points How to create folders for your media Install Docker Instructions for Docker and docker-compose Install Plex Plex setup and configuration Install qBittorrent qBittorrent installation and tips Setup Media Manager Deploying the ARR stack with docker-compose"},{"location":"#how-to-use-this-guide","title":"\ud83e\udded How to Use This Guide","text":"

This guide is designed to be followed step by step. If you already have some tools installed, you can skip those sections\u2014otherwise, work through each part in order for a smooth setup.

"},{"location":"#need-help","title":"\ud83d\udcac Need Help?","text":"

Every step offers clear commands, explanations, and tips. If you hit a roadblock, check out the troubleshooting section or double-check the instructions provided.

Ready to get started? Head to \u2192 Getting Started

"},{"location":"getting-started/","title":"Getting Started","text":"

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.

"},{"location":"getting-started/#recommended-system-requirements","title":"Recommended System Requirements","text":""},{"location":"getting-started/#what-you-should-have-done-already","title":"What You Should Have Done Already","text":"

While this document won\u2019t cover detailed Raspberry Pi installation steps, your system should be ready with the following:

"},{"location":"getting-started/#1-raspberry-pi-flashed-and-booted","title":"1. Raspberry Pi flashed and booted","text":""},{"location":"getting-started/#2-network-setup-configured","title":"2. Network setup configured","text":""},{"location":"getting-started/#3-storage-attached-and-mounted","title":"3. Storage attached and mounted","text":""},{"location":"getting-started/#4-timezone-and-system-time-set","title":"4. Timezone and system time set","text":""},{"location":"getting-started/#5-basic-linux-knowledge","title":"5. Basic Linux knowledge","text":""},{"location":"getting-started/#optional-but-helpful","title":"Optional but Helpful","text":""},{"location":"getting-started/#next-step","title":"Next Step","text":"

Once your Raspberry Pi or Linux host is prepared, continue to the Overview 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\u2019s essential for the Media Manager setup without rehashing basic Raspberry Pi tutorials.

"},{"location":"steps/install-docker/","title":"Installing Docker \u2014 What It Is, How It Works, and Why We Use It","text":"

Before installing Docker, it\u2019s 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 breaks it down simply and practically.

"},{"location":"steps/install-docker/#what-is-docker","title":"\ud83d\udc33 What Is Docker?","text":"

Docker is a containerization platform.

It allows you to run applications in isolated environments called containers. Each container:

Think of a container as:

A lightweight, specialized mini-computer dedicated to one app.

This approach makes apps more predictable, easier to manage, and simpler to update.

"},{"location":"steps/install-docker/#why-use-docker","title":"\ud83d\udd27 Why Use Docker?","text":" Text Only
docker compose pull\ndocker compose up -d\n
"},{"location":"steps/install-docker/#why-not-put-everything-in-docker","title":"\ud83d\udeab Why Not Put Everything in Docker?","text":"

While you could put all components into Docker, some behave poorly or have limitations when containerized, especially on Raspberry Pi or home servers.

"},{"location":"steps/install-docker/#why-qbittorrent-is-not-in-docker","title":"\u274c Why qBittorrent Is NOT in Docker","text":"

qBittorrent requires:

Within Docker, qBittorrent faces problems like:

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:

"},{"location":"steps/install-docker/#why-plex-is-not-in-docker","title":"\u274c Why Plex Is NOT in Docker","text":"

Plex relies on:

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

Conclusion:

"},{"location":"steps/install-docker/#why-the-arr-stack-is-in-docker","title":"\ud83d\udfe9 Why the ARR Stack Is in Docker","text":"

Radarr, Sonarr, Prowlarr, and Bazarr are:

"},{"location":"steps/install-docker/#benefits","title":"Benefits:","text":""},{"location":"steps/install-docker/#summary-the-architecture-philosophy","title":"\ud83e\uddf1 Summary \u2014 The Architecture Philosophy","text":"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 setup balances performance, reliability, and ease of maintenance.

"},{"location":"steps/install-docker/#installing-docker-raspberry-pi-linux","title":"\ud83e\uddf0 Installing Docker (Raspberry Pi / Linux)","text":"

This tutorial uses an installation script that:

"},{"location":"steps/install-docker/#download-script","title":"\ud83d\udce5 Download Script","text":"

\ud83d\udc49 install-docker.sh

"},{"location":"steps/install-docker/#after-installation","title":"\ud83d\ude80 After Installation","text":" Bash
sudo reboot\n

Once rebooted, your system will be ready to run containerized ARR services.

"},{"location":"steps/install-docker/#next-step-install-plex-on-the-host","title":"\u27a1\ufe0f Next Step: Install Plex on the Host","text":"

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 \ud83d\udc49 Install Plex

"},{"location":"steps/install-plex/","title":"Installing Plex Media Server","text":"

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 covers:

"},{"location":"steps/install-plex/#what-is-plex","title":"\ud83c\udfac What Is Plex?","text":"

Plex Media Server is an application that:

With great power comes heavy disk usage.

"},{"location":"steps/install-plex/#why-plex-runs-outside-docker","title":"\ud83e\uddf1 Why Plex Runs Outside Docker","text":"

Though Docker is excellent for the ARR stack, Plex demands more and runs better directly on the host system.

Common problems running Plex inside Docker:

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

Practical experience shows Plex performs best installed natively on the OS.

"},{"location":"steps/install-plex/#why-move-plex-metadata-to-an-external-hdd","title":"\ud83d\uddc3\ufe0f Why Move Plex Metadata to an External HDD?","text":"

Plex stores a huge amount of metadata\u2014often tens to hundreds of gigabytes, depending on your library size.

Stored in its config directory are:

"},{"location":"steps/install-plex/#typical-metadata-sizes","title":"\ud83d\udccc Typical Metadata Sizes","text":"

If this data stays on your system SD card or root SSD (e.g., /var/lib/plexmediaserver):

"},{"location":"steps/install-plex/#store-metadata-on-your-external-hdd","title":"\u2714 Store metadata on your external HDD","text":"

This is why Plex config is relocated to:

Text Only
/mnt/omnissiah-vault/configs/plex\n
"},{"location":"steps/install-plex/#installation-script","title":"\u2699\ufe0f Installation Script","text":"

This tutorial uses an installation script that:

"},{"location":"steps/install-plex/#download-script","title":"\ud83d\udce5 Download Script","text":"

\ud83d\udc49 install-plex.sh

"},{"location":"steps/install-plex/#after-installation","title":"\ud83d\ude80 After Installation","text":"

Once Plex is installed and its metadata moved:

All ongoing metadata, caching, posters, and intro markers will safely reside on your external HDD.

"},{"location":"steps/install-plex/#next-step-install-qbittorrent-on-the-host","title":"\u27a1\ufe0f Next Step: Install qBittorrent on the Host","text":"

After successfully installing Plex and configuring its metadata on your external HDD, it\u2019s 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 \ud83d\udc49 Install qBittorrent

"},{"location":"steps/install-qbittorrent/","title":"Installing qBittorrent (Host Installation)","text":"

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:

"},{"location":"steps/install-qbittorrent/#what-is-qbittorrent","title":"\ud83c\udf00 What Is qBittorrent?","text":"

qBittorrent is an open\u2011source torrent client featuring:

It acts as the download worker for the entire Media Manager.

When Radarr or Sonarr find new media, they send the torrent to qBittorrent. Upon completion, ARR processes renaming and file management.

"},{"location":"steps/install-qbittorrent/#why-qbittorrent-should-not-run-in-docker","title":"\u274c Why qBittorrent Should NOT Run in Docker","text":"

Though technically possible, running qBittorrent in Docker on low-power hardware like Raspberry Pi causes significant issues:

"},{"location":"steps/install-qbittorrent/#1-docker-slows-torrent-hashing","title":"1. Docker slows torrent hashing","text":""},{"location":"steps/install-qbittorrent/#2-permissions-become-complicated","title":"2. Permissions become complicated","text":""},{"location":"steps/install-qbittorrent/#3-stable-real-file-paths-are-necessary","title":"3. Stable real file paths are necessary","text":""},{"location":"steps/install-qbittorrent/#4-performance-is-better-on-the-host","title":"4. Performance is better on the host","text":"

Conclusion:

"},{"location":"steps/install-qbittorrent/#why-qbittorrent-configuration-does-not-need-external-hdd","title":"\ud83d\udce6 Why qBittorrent Configuration Does NOT Need External HDD","text":"

Unlike Plex\u2019s large metadata, qBittorrent stores only minor config files such as:

Typical config size: 2\u201320 MB \u2014 negligible and stable.

Keeping qBittorrent config on your system\u2019s internal OS disk is safe and recommended.

"},{"location":"steps/install-qbittorrent/#installation-script-systemd-service","title":"\u2699\ufe0f Installation Script (Systemd Service)","text":""},{"location":"steps/install-qbittorrent/#installation-script","title":"\u2699\ufe0f Installation Script","text":"

This tutorial uses an installation script that:

After running the script, you can access qBittorrent\u2019s Web UI and begin configuring your download settings.

"},{"location":"steps/install-qbittorrent/#download-script","title":"\ud83d\udce5 Download Script","text":"

\ud83d\udc49 install-qbittorrent.sh

"},{"location":"steps/install-qbittorrent/#after-installation","title":"\ud83d\ude80 After Installation","text":"

Access the Web UI at:

Text Only
http://<your_pi_ip>:8080\n

Default credentials:

Text Only
username: admin\npassword: adminadmin\n

Change your password on first login!

ARR integration will be configured after the Docker-based ARR stack is deployed.

"},{"location":"steps/install-qbittorrent/#next-step-setup-arr-stack-docker-compose","title":"\u27a1\ufe0f Next Step: Setup ARR Stack (Docker Compose)","text":"

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 \ud83d\udc49 Setup Media Manager

"},{"location":"steps/install-samba/","title":"Optional: Installing Samba for Windows Network Access","text":"

While Samba setup is not mandatory for this Media Manager system, it\u2019s highly recommended if you want easier access to your media files from Windows machines or other devices on your network.

Here\u2019s why you might want to consider Samba:

If you mainly interact with your media through Plex, Radarr, Sonarr, or the Linux terminal, Samba is not essential.

"},{"location":"steps/install-samba/#why-samba-can-be-useful","title":"Why Samba Can Be Useful","text":"

Despite the automation provided by Radarr, Sonarr, and Bazarr, there are times when manual access is needed:

On Linux or macOS, SSH provides a way to do this. But Windows users benefit most from Samba shares, which map your server\u2019s drive like a regular Windows network folder.

"},{"location":"steps/install-samba/#what-samba-does","title":"What Samba Does","text":"

Samba turns your Raspberry Pi or Linux server\u2019s storage into Windows-friendly network shares.

For example, the folder:

Text Only
/mnt/omnissiah-vault\n

Can be used from Windows like:

Text Only
Z:\\  \u2192 Omnissiah-Vault\n

This means in Windows:

"},{"location":"steps/install-samba/#installation-script","title":"\u2699\ufe0f Installation Script","text":"

This script will:

"},{"location":"steps/install-samba/#download-script","title":"\ud83d\udce5 Download Script","text":"

\ud83d\udc49 install-samba.sh

"},{"location":"steps/install-samba/#after-installation","title":"\ud83d\ude80 After Installation","text":"

Once Samba is set up and running on your server, you can connect from your Windows computer:

  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\u2019s hidden).
  4. Choose a drive letter, such as Z:.
  5. Enter the network folder path in this format: Text Only

    \\\\<server-ip>\\Omnissiah-Vault\n

    Example:

    Text Only

    \\\\192.168.1.50\\Omnissiah-Vault\n
    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: Text Only
    Username: aetos\nPassword: <your-samba-password>\n
    8. Click Finish. Your media drive will appear in File Explorer like any normal disk.

You can also map it via PowerShell: Text Only

net use Z: \\\\<server-ip>\\Omnissiah-Vault /user:aetos\n

"},{"location":"steps/install-samba/#security-tips","title":"Security Tips","text":""},{"location":"steps/install-samba/#summary","title":"Summary","text":"

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.

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

Skip installing Samba if you: - Do everything through Plex or media automation apps - Manage the server via Linux or macOS only - Don\u2019t need manual file access on other devices

"},{"location":"steps/overview/","title":"Overview","text":"

This page lays out the clear plan for your Media Manager setup\u2014what actions you\u2019ll 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.

"},{"location":"steps/overview/#the-goal","title":"The Goal","text":"

We\u2019re turning a single Linux machine (like a Raspberry Pi) into a reliable, mostly hands-off media server that:

"},{"location":"steps/overview/#high-level-setup-architecture","title":"High-Level Setup Architecture","text":""},{"location":"steps/overview/#1-validate-your-system","title":"\ud83d\udd0d 1) Validate Your System","text":"

What we do: Verify your operating system, update all critical packages, and set essential system settings like hostname, timezone, and network configuration.

What you achieve: A stable and predictable environment with SSH access and a consistent system identity, laying the foundation for everything else.

"},{"location":"steps/overview/#2-prepare-storage-and-mount-points","title":"\ud83d\udcbe 2) Prepare Storage and Mount Points","text":"

What we do: Connect and mount your external drives permanently, create organized folders for media, downloads, and configurations.

What you achieve: Reliable, durable storage locations cleanly separated from your system disk, making management, backups, and expansions easier.

"},{"location":"steps/overview/#3-install-docker","title":"\ud83d\udc33 3) Install Docker","text":"

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.

"},{"location":"steps/overview/#4-install-plex-on-the-host","title":"\ud83c\udfac 4) Install Plex on the Host","text":"

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.

"},{"location":"steps/overview/#5-install-qbittorrent-on-the-host","title":"\ud83e\uddf2 5) Install qBittorrent on the Host","text":"

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.

"},{"location":"steps/overview/#6-deploy-the-arr-stack-via-docker-compose","title":"\ud83e\uddf1 6) Deploy the ARR Stack via Docker Compose","text":"

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.

"},{"location":"steps/overview/#7-integrate-arr-with-qbittorrent-and-plex","title":"\ud83d\udd17 7) Integrate ARR with qBittorrent and Plex","text":"

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.

"},{"location":"steps/overview/#8-configure-media-libraries-and-quality-profiles","title":"\ud83d\uddc2\ufe0f 8) Configure Media Libraries and Quality Profiles","text":"

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.

"},{"location":"steps/overview/#9-test-your-full-setup","title":"\ud83d\ude80 9) Test Your Full Setup","text":"

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.

"},{"location":"steps/overview/#10-backup-and-maintain","title":"\ud83d\udee1\ufe0f 10) Backup and Maintain","text":"

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.

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.

"},{"location":"steps/overview/#ready-to-begin","title":"\ud83d\udeaaReady to begin?","text":"

Move on to the Setup Mount Points step to prepare your storage structure and permissions Go to \ud83d\udc49 Setup Mount Points

"},{"location":"steps/setup-media-manager/","title":"ARR Stack Overview and Service Architecture","text":"

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.

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.

"},{"location":"steps/setup-media-manager/#the-arr-ecosystem-what-each-app-does","title":"\ud83c\udf10 The ARR Ecosystem \u2014 What Each App Does","text":"

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.

"},{"location":"steps/setup-media-manager/#prowlarr-the-indexer-aggregator","title":"\ud83e\udded Prowlarr \u2014 The Indexer Aggregator","text":"

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.

"},{"location":"steps/setup-media-manager/#radarr-automated-movie-management","title":"\ud83c\udfac Radarr \u2014 Automated Movie Management","text":"

Radarr handles your movie collection.

"},{"location":"steps/setup-media-manager/#sonarr-automated-tv-show-management","title":"\ud83d\udcfa Sonarr \u2014 Automated TV Show Management","text":"

Sonarr does essentially the same job as Radarr, but for TV shows.

"},{"location":"steps/setup-media-manager/#bazarr-subtitle-management-service","title":"\ud83d\udcac Bazarr \u2014 Subtitle Management Service","text":"

Bazarr works alongside Radarr and Sonarr to handle subtitles.

"},{"location":"steps/setup-media-manager/#jellyseerr-user-request-portal","title":"\ud83c\udf9f\ufe0f Jellyseerr \u2014 User Request Portal","text":"

Jellyseerr provides a friendly interface where users can request movies or TV shows.

"},{"location":"steps/setup-media-manager/#ombi-alternative-request-management","title":"\ud83d\udce8 Ombi \u2014 Alternative Request Management","text":"

Ombi offers similar features to Jellyseerr but with a different look and some unique options.

"},{"location":"steps/setup-media-manager/#how-these-services-connect","title":"\ud83e\uddf1 How These Services Connect","text":"

Here\u2019s a simple flow to understand their interaction:

User Requests (via Jellyseerr/Ombi) \u2193 Radarr & Sonarr \u2193 Prowlarr provides index results \u2193 qBittorrent (host) downloads files \u2193 Organized media library (on shared storage) \u2193 Plex streams content \u2193 Clients (your devices)

"},{"location":"steps/setup-media-manager/#shared-storage-and-docker-volumes","title":"\ud83d\uddc4\ufe0f Shared Storage and Docker Volumes","text":"

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.

Each service also stores its settings (config files) in their own dedicated folders on the external drive, persisting beyond container restarts:

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

This organization keeps your media and service configurations cleanly separated and easy to backup or migrate.

"},{"location":"steps/setup-media-manager/#docker-networking","title":"\ud83d\udd27 Docker Networking","text":"

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.

"},{"location":"steps/setup-media-manager/#summary","title":"\ud83d\ude80 Summary","text":"

Your Media Manager ARR stack is a carefully connected set of services:

They share data neatly through a standardized storage path and communicate over a private Docker network for smooth operation.

"},{"location":"steps/setup-media-manager/#optional-accessing-your-media-via-samba-network-share","title":"Optional: Accessing Your Media via Samba Network Share","text":"

If you want to access your external HDD directly from other devices on your network\u2014like Windows PCs, Macs, or mobile devices\u2014you 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.

This is especially useful if you prefer managing files directly or want seamless integration with devices that don\u2019t support network streaming apps.

You can find the step-by-step Samba installation and configuration instructions here: Go to\ud83d\udc49 Install Samba

"},{"location":"steps/setup-mount-points/","title":"Understanding Mounting, File Systems, and Choosing Between EXT4 vs NTFS","text":"

Before we connect our drives and get everything ready, it\u2019s 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 these concepts in simple terms so beginners can follow with confidence.

"},{"location":"steps/setup-mount-points/#what-does-mounting-mean","title":"\ud83e\udde9 What Does \u201cMounting\u201d Mean?","text":"

On Linux, storage devices like HDDs, SSDs, or USB drives don\u2019t automatically appear as folders when plugged in. Instead, the operating system attaches or mounts them to a folder\u2014meaning:

Mounting = attaching a drive to a folder in the filesystem

For example:

Text Only
Device: /dev/sda1\nMounted at: /mnt/omnissiah-vault\n

Once mounted:

If the drive isn\u2019t mounted, Linux can see the hardware but won\u2019t be able to access the data stored on it.

"},{"location":"steps/setup-mount-points/#why-we-use-mnt","title":"\ud83d\udcd8 Why We Use /mnt/\u2026","text":"

Linux organizes storage under specific folders:

Path Purpose /home User\u2019s personal files /root Root user\u2019s files /etc System configuration files /mnt External drives mounted by the user

We typically mount drives in /mnt to keep things organized, for example:

Text Only
/mnt/omnissiah-vault\n

This makes it clear that the drive is external storage, not part of the system root.

"},{"location":"steps/setup-mount-points/#what-is-a-file-system","title":"\ud83d\udd27 What Is a File System?","text":"

A file system determines how data is organized on a drive.

It controls:

Two major file systems matter for media management:

"},{"location":"steps/setup-mount-points/#ext4-vs-ntfs-which-should-you-use","title":"\ud83c\udd9a EXT4 vs NTFS \u2014 Which Should You Use?","text":"

Below is a simple, clear comparison.

Feature EXT4 (Linux Native) NTFS (Windows Native) Best OS support Linux Windows Performance on Linux \u2b50\u2b50\u2b50\u2b50 Fast \u2b50 Slow (requires NTFS-3G driver) Supports Linux permissions (chmod, chown) \u2714 Yes \u274c No (emulated) Good for Plex & ARR stack \u2714 Best choice \u2714 Works but slower Reliability \u2b50\u2b50\u2b50\u2b50\u2b50 Excellent \u2b50\u2b50\u2b50 Good 4K/large drive support \u2714 Yes \u2714 Yes Automatic mounting Easy Slightly more complex Ideal use case Permanent Linux storage External drive shared with Windows"},{"location":"steps/setup-mount-points/#choose-ext4-if-the-drive-stays-connected-to-your-raspberry-pilinux-system","title":"\u2714 Choose EXT4 if the drive stays connected to your Raspberry Pi/Linux system.","text":"

This is the recommended choice for media servers, Plex, and qBittorrent because:

"},{"location":"steps/setup-mount-points/#choose-ntfs-only-if-the-drive-must-also-be-used-on-windows","title":"\u2714 Choose NTFS only if the drive must also be used on Windows.","text":"

For example:

"},{"location":"steps/setup-mount-points/#accessing-an-ext4-drive-on-windows","title":"\ud83e\ude9f Accessing an EXT4 Drive on Windows?","text":"

EXT4 cannot be read by Windows natively.

However, this is not a problem, because:

"},{"location":"steps/setup-mount-points/#you-will-access-your-media-over-the-network-using-samba-smb","title":"You will access your media over the network using Samba (SMB).","text":"

This means:

We will configure Samba later in an optional section:

\ud83d\udc49 \u201cAccessing Your Media from Windows (Samba Setup)\u201d

"},{"location":"steps/setup-mount-points/#choose-your-mounting-ritual","title":"\ud83d\udce5 Choose Your Mounting Ritual","text":"

Below are two scripts \u2014 pick one based on your file system choice.

"},{"location":"steps/setup-mount-points/#ext4-mounting-ritual-recommended","title":"\ud83d\udfe6 EXT4 Mounting Ritual (Recommended)","text":"

Download: \ud83d\udc49 bind-machine-spirits-ext4.sh

(Use this if your drive is formatted as EXT4 and stays connected permanently.)

"},{"location":"steps/setup-mount-points/#ntfs-mounting-ritual-legacyoptional","title":"\ud83d\udfe8 NTFS Mounting Ritual (Legacy/Optional)","text":"

Download: \ud83d\udc49 bind-machine-spirits-ntfs.sh

(Use this only if your drive must work on both Linux and Windows without Samba.)

"},{"location":"steps/setup-mount-points/#what-happens-next","title":"\ud83e\udded What Happens Next?","text":"

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
"},{"location":"steps/setup-mount-points/#next-step-install-docker","title":"\u27a1\ufe0f Next Step: Install Docker","text":"

Proceed to the Install Docker step to prepare docker for media management. Go to \ud83d\udc49 Install Docker

"}]}