A neighbor of mine bought a two-bay Synology, dragged eight years of family photos onto it, then wiped the SD cards and the old laptop they came from. Four months later one drive clicked, he panicked, pulled the wrong disk to "check it," and lost the lot. Nothing about that failure was inevitable.
Every mistake in that story is one I have watched happen dozens of times, and every one has a fix that takes minutes.
The trouble with a NAS is that it looks like safety. Two drives, blinking lights, a slick web interface: it feels like your files are finally protected. That feeling is exactly where people get burned, because a NAS solves a different problem than the one most new owners think it solves.
Mistake 1: Believing RAID is a backup
This is the big one, so it goes first. RAID keeps your NAS running when a drive dies. It does not protect your files from anything else.
Delete a folder by accident and RAID faithfully deletes it across every disk. Ransomware encrypts your files, RAID encrypts them everywhere. A power surge fries the whole unit, RAID cannot help you at all.
The rule I hand everyone is the 3-2-1 backup strategy: three copies of your data, on two different types of media, with one copy off-site. Your NAS is one copy. You still need at least one more, ideally somewhere your house fire cannot reach it.

Mistake 2: Picking the wrong RAID level in a hurry
The setup wizard asks you to choose a storage type in about the third click, long before most people understand what they are picking. On a two-bay unit the real choice is between mirroring (SHR or RAID 1) and striping (RAID 0 or JBOD).
Choose striping and you double your capacity, but if either drive fails you lose everything on both. I have seen people pick RAID 0 purely because it showed the bigger number, with no idea they had just built the least safe option available.
Here is the plain-language version.
| Setup | Survives a drive failure? | Usable space (2x 8TB) | Best for |
|---|---|---|---|
| RAID 1 / SHR | Yes, one drive | About 8TB | Almost everyone |
| RAID 0 | No | About 16TB | Scratch data you can lose |
| JBOD | No | About 16TB | Not for irreplaceable files |
For a home unit with photos and documents on it, pick mirroring and move on. The lost capacity is cheaper than the lost weekend.
Mistake 3: Using mismatched or shingled drives
Two drives that are wildly different in size waste capacity, because most parity setups can only use as much of each disk as the smallest one offers. Pair a 4TB with a 12TB and you have paid for 8TB you will never see.
The sneakier problem is SMR, or shingled magnetic recording. These drives are cheap and fine for cold storage, but they crawl during a RAID rebuild and have caused real failures when a second drive died before the first finished rebuilding.
Mistake 4: Never testing that the backup actually restores
A backup you have never restored from is a hope, not a backup. I say that to every single person I help set one up, because the failure mode is brutal: you find out the job was silently broken only on the day you desperately need it.
Cloud sync jobs pause when a token expires. USB backups quietly fail when the drive is full. Snapshots roll off faster than you expected, and the error that would have warned you went to an inbox nobody reads.
Once a month, pick one random file, delete it, and restore it from your backup. It takes ninety seconds and it is the only way to know the whole chain works end to end.
The version of this I care about most is the one where sync is not backup either. A folder that mirrors both directions will happily copy your accidental deletion straight to the "safe" copy within seconds. Real backup keeps versions, so you can reach back to how a file looked last Tuesday.
Mistake 5: Leaving the NAS wide open to the internet
People want to reach their files from their phone, so they forward a port, enable the admin account over the open web, and never think about it again. Bots find that within hours.
A wave of ransomware in 2021 and 2022 hit exactly these units, and both major vendors published emergency warnings. QNAP's own guidance was blunt about not exposing devices directly; you can read the QNAP security advisories to see how frequent these are.
Do these four things and you dodge nearly all of it:
- Never expose the default admin account. Create a new admin user and disable the built-in one.
- Turn off UPnP on your router so the NAS cannot punch its own holes.
- Use the vendor's relay app (QuickConnect, myQNAPcloud) or a VPN instead of raw port forwarding.
- Enable two-factor authentication and automatic security updates.
Mistake 6: No UPS, no notifications, no plan for silence
A sudden power cut during a write can corrupt the file system, not just one file. A small uninterruptible power supply that costs about 70 dollars gives the NAS enough time to shut down cleanly, and most units detect a USB-connected UPS automatically.
The quieter version of this mistake is turning off email alerts during setup because the SMTP prompt was annoying. A degraded array will sit there for weeks with a red light nobody looks at.
Mistake 7: Filling the pool to the brim
Copy-on-write file systems like Btrfs and ZFS get slow and cranky when they run past roughly 90 percent full, and snapshots need free space to function. A NAS packed to 99 percent can refuse to delete files, which is a genuinely confusing afternoon the first time it happens.
Leave headroom. When you cross 80 percent, that is your cue to plan the next drive, not the night the pool fills completely.
There is a related trap on Synology and QNAP units: people enable snapshots to protect against ransomware, which is great, then never set a retention limit. Snapshots quietly eat the free space they need to keep working, and one morning the volume is full for reasons that make no sense until you go looking.
Mistake 8: Trusting one drive brand and one purchase batch
Two drives bought on the same day, from the same shelf, often come from the same manufacturing run. When one fails from a batch defect, the odds that its twin is close behind are higher than most people assume.
You do not need to go overboard here. Buying your two drives from different retailers, or a few weeks apart, is enough to break the pattern, and it costs nothing extra.
Where to actually start
If you are configuring a unit this week, do these in order: pick mirroring, install CMR drives, create a non-default admin with 2FA, set up one off-site or cloud backup copy, then delete and restore a test file to prove it works. That sequence takes an afternoon and closes every gap above.
The point of a NAS was never the blinking lights. It was walking past that thing a year from now, spilling coffee on your laptop, and not feeling your stomach drop.
Frequently asked questions
Do I really need a backup if my NAS already has two drives in RAID?
Yes. RAID protects against a single drive dying, but it copies every deletion, corruption, and ransomware attack across both disks instantly. A theft or house fire takes the whole unit at once. You need at least one separate copy, ideally off-site or in the cloud, before your NAS counts as safe.
What RAID level should a first-time home user pick?
For a two-bay unit, use RAID 1 or Synology's SHR, which mirror your data so one drive can fail without loss. Skip RAID 0 and JBOD, which offer more space but zero fault tolerance. On four bays, SHR-2 or RAID 6 lets two drives fail before you lose anything.
How do I know if a hard drive is SMR or CMR?
Search the exact model number along with 'CMR or SMR' before buying. NAS-branded lines such as WD Red Plus, Seagate IronWolf, and Toshiba N300 are CMR and safe for RAID. Avoid plain SMR drives, which slow to a crawl and can fail during a rebuild.
Is it safe to access my NAS over the internet?
It can be, but not through raw port forwarding to the admin account. Use a VPN or the vendor's relay service like QuickConnect or myQNAPcloud, create a non-default admin user, enable two-factor authentication, and keep automatic security updates on. That combination blocks nearly all opportunistic attacks.
How full can I let my NAS get?
Aim to keep 15 to 20 percent free, especially on Btrfs or ZFS pools. Past about 90 percent, performance drops sharply and snapshots can fail. When you hit 80 percent full, start planning your next drive rather than waiting until the pool is packed.
Do I need a UPS for a home NAS?
It is one of the cheapest insurance policies you can buy. A power cut during a write can corrupt the file system, not just one file. A small UPS around 70 dollars gives the NAS time to shut down cleanly, and most units detect a USB-connected UPS and handle the shutdown automatically.