this post was submitted on 03 Jan 2026
51 points (98.1% liked)

Selfhosted

56953 readers
957 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

  7. No low-effort posts. This is subjective and will largely be determined by the community member reports.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

I want a server running nextcloud, immich and others.

I have a N100 mini server with a 2TB external HDD. I want to secure the system against data loss. Hence, I want a backup and redundancy.

  1. Most important question: How do I build everything? Is this a NAS? My naive approach is to buy 3 external HDDs and connect them to the N100 with a USB hub. I assume this is not "the right way" but to use/build a NAS. Do I have to build a separate NAS computer? When I lookup NAS buying, it is a computer with a case for 4 drives, excluding the drives and costs 400 bucks. I am confused because this is incredibly expensive compared to what I already have. What is the additional benefit compared to my setup? Am I cheap?

  2. Regarding redundancy, is RAID still the way to go? At 2 TB, using RAID 5 with 3 drives sounds good. I'd have 4 TB of usable space, much more than I intend to use in the next years, and adding a drive increases the storage by 2 TB, effectively increasing space by 50%.

  3. I have 4 TB usable space, but I won't reach 2 TB in the next one or two years. I'd use a 2 TB HDD for a local backup via borg. Once my hot storage needs to increase, I replace the backup drive with a larger one and use it to increase the RAID storage. Is one backup sufficient? Or should I keeping multiple versions of the data. Daily, weekly, monthly backups? What is your experience with it?

  4. Another 2 TB HDD for an offsite backup, LUKS encrypted, backed up once a year (that's the goal for now).

Does that sound good?

you are viewing a single comment's thread
view the rest of the comments
[–] selfmate@lemmy.zip 2 points 1 month ago* (last edited 1 month ago) (1 children)

all good. thanks for exchanging our experience :)

kopia wasn't running durin the week. I didn't look into the server configuration since it introduces user handling and that seemed to be overkill for the task but running as daemon would lead to a funcitoning system of course.

this is my kopia.service file in case some else finds it and is interested in it

[Unit]

Description=kopia backup

[Service]

User=root ExecStart=$HOME/bin/backup_kopia

[Install]

WantedBy=multi-user.target

where $HOME/bin/backup_kopia contains

#!/bin/bash

/usr/bin/kopia repository connect filesystem --path $KOPIA_REPO --password $KOPIA_PASSWORD

/usr/bin/kopia snapshot create $HOME/folder_to_backup

and my kopia.timer

[Unit]

Description=Run kopia backup

[Timer]

OnCalendar=hourly

Persistent=true

[Install]

WantedBy=timers.target

[–] selfmate@lemmy.zip 1 points 1 month ago

the backup is working