Hot PocketNAS: A Mobile Pocket-Sized NAS Using Raspberry Pi Zero 2W and OpenMediaVault
Say hello to the Hot PocketNAS — the NAS-agotchi! 🐣
What happens when you take the world's smallest Raspberry Pi, strap a battery to its back, and install a full-blown NAS operating system on it? You get the most adorable (and actually useful) mobile Network Attached Storage device you've ever seen.
This build uses a Raspberry Pi Zero 2W paired with a PiSugar S 1200mAh battery kit and OpenMediaVault 6 to create a completely wireless, pocket-sized NAS. Fair warning: this is not meant to replace your beefy home server — but it's a wildly fun project, and surprisingly handy for certain use cases.
What Even Is a NAS?
NAS stands for Network Attached Storage. Think of it like a tiny personal cloud server — a drive that stores files and makes them available to any device on the same network (or even over the internet). Normally a NAS is a chunky box that sits on a shelf permanently plugged in. We're throwing that idea out the window.
The Hardware
Here's what makes up the Hot PocketNAS:
| Part | Details | |---|---| | Raspberry Pi Zero 2W | Quad-core 64-bit ARM Cortex-A53 @ 1GHz, 512MB RAM, built-in WiFi | | PiSugar S 1200mAh | A battery pack designed specifically to snap onto the Pi Zero's back | | Micro SD Card | Holds the OS — use a high-endurance card (32 GB recommended) | | USB OTG Adapter | To connect a USB storage drive to the Pi Zero's micro USB port | | Small USB Flash Drive or SSD | Your actual storage medium |
The Pi Zero 2W is genuinely tiny — about the size of a credit card. The PiSugar battery is designed to attach magnetically or via pogo pins on the back, keeping the whole package compact.
Why Would You Want a Mobile NAS?
Great question! Here are some real use cases:
- Travel media server: Load it up with movies and stream to your phone or tablet on a plane (no internet required — it creates its own WiFi hotspot!)
- Field data backups: Photographers and videographers can dump SD card footage to it on location
- Portable file sharing: Share files between multiple devices at a workshop or event without relying on cloud services
- Learning project: It's a fun way to understand NAS concepts, Linux, and networking
Step 1: Flash the OS
We'll start with Raspberry Pi OS Lite (32-bit) — this is the version without a desktop interface (called "headless"), which saves precious RAM and processing power.
- Download the Raspberry Pi Imager from raspberrypi.com/software
- Select Raspberry Pi OS Lite (32-bit) as the OS
- Select your Micro SD card as the target
- Click the gear icon (⚙️) to open advanced settings:
- Enable SSH
- Set your hostname (e.g.,
pockNAS) - Set your username and password
- Configure your WiFi network (so it auto-connects on boot)
- Click Write and wait for it to finish
Step 2: First Boot and SSH In
- Pop the SD card into your Pi Zero 2W
- Attach the PiSugar battery and power it on
- Wait about 60–90 seconds for it to fully boot
- Find the Pi's IP address using a network scanner like Fing (free on iOS/Android)
- SSH in using your terminal or PuTTY:
ssh your_username@<pi_ip_address>
Step 3: Update the System
Always start with a fresh update:
sudo apt update && sudo apt upgrade -y
This keeps everything secure and compatible. Grab a snack — it'll take a few minutes.
Step 4: Install OpenMediaVault 6
OpenMediaVault (OMV) is the magic that turns our tiny Pi into a proper NAS. It gives us a slick web interface for managing storage, network shares, and services.
Run the official OMV install script:
wget -O - https://github.com/OpenMediaVault-Plugin-Developers/installScript/raw/master/install | sudo bash
This will take 10–20 minutes depending on your internet speed. The Pi will reboot automatically when done.
Step 5: Access the OpenMediaVault Web Interface
Once it reboots:
- Open a browser on any device connected to the same WiFi
- Go to
http://<pi_ip_address> - Log in with:
- Username:
admin - Password:
openmediavault
- Username:
Security tip: Change the default admin password immediately! Go to User → Change Password in the top right menu.
Step 6: Set Up Your Storage
- In OMV, go to Storage → Disks — you should see your USB drive listed
- Go to Storage → File Systems → click the + to create a new filesystem
- Select your USB drive and choose EXT4 as the format
- Click Apply
Step 7: Create a Shared Folder
- Go to Storage → Shared Folders → click +
- Name it (e.g.,
PocketFiles) - Select your USB filesystem
- Set permissions as needed and click Save
Step 8: Enable Network Sharing (SMB/CIFS)
SMB (Server Message Block) lets Windows, Mac, and Linux computers see your NAS drive in their file explorers — just like a network folder.
- Go to Services → SMB/CIFS → Settings and toggle it ON
- Go to Shares tab → click +
- Select your shared folder
- Click Save then Apply
Now open File Explorer on Windows and in the address bar type:
\\<pi_ip_address>\PocketFiles
Your Hot PocketNAS folder will appear! 🎉
Battery Life & Limitations
Let's keep it real — the PiSugar S 1200mAh battery gives you roughly 2–4 hours of run time depending on activity level. This is definitely not a 24/7 device.
The Pi Zero 2W is also not a speed demon:
- Wi-Fi transfer speeds: ~2–4 MB/s (functional, not blazing fast)
- USB: Only one USB port via OTG adapter, so one drive at a time
For light use — sharing a few files at a meeting, media on a plane, a quick field backup — it's totally fine.
Key Takeaways
- The Raspberry Pi Zero 2W is powerful enough to run a real NAS OS
- PiSugar S adds battery power without any wiring or soldering
- OpenMediaVault 6 turns it into a full NAS with SMB file sharing
- The Hot PocketNAS is best for portable, light-duty file sharing — not replacing your home server
- This is a fantastic project for learning about Linux, networking, and self-hosting
Useful Resources
- Raspberry Pi Imager: raspberrypi.com/software
- OpenMediaVault: openmediavault.org
- PiSugar Battery: Search "PiSugar S" on Amazon or AliExpress
- OMV Raspberry Pi Install Guide: wiki.omv-extras.org
- Fing Network Scanner: fing.com (free app for iOS/Android)
Who says a NAS has to sit on a shelf? The Hot PocketNAS proves you can take your file server anywhere. Build one, toss it in your bag, and never be caught without your files again! 🗂️✨