this post was submitted on 27 Dec 2023
90 points (95.0% liked)

Selfhosted

39151 readers
305 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.

Resources:

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

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

n00b question, sorry. If I had a desktop that could hold 4 HD and 2 SSD, could I turn it into a NAS? Could someone point me in the right direction if this makes sense?

you are viewing a single comment's thread
view the rest of the comments
[–] possiblylinux127@lemmy.zip 2 points 8 months ago (1 children)

I'm not sure I can recommend anything without knowing your goals. For me my needs quickly outgrew my little mini PC and now I have a cluster with a few single board computers. Here's a basic list of what I run:

Dell workstation (proxmox):

  • Linux Mint
    • GPU and USB passed though via Virtio with a sata to USB adapter for connecting the bluray drive
    • Used as a desktop and is an alternative to my laptop.
    • It also hosts Jellyfin in a podman container
  • Docker 0
    • Nextcloud
  • TrueNAS
    • This is a TrueNAS VM with a dedicated sata controller passed though to it. Its used for storage for nextcloud and jellyfin.

Mini PC (proxmox)

  • landmass

    • this is a simple LXC container to act as a wireguard client with a caddy proxy. It allows me to access my HDhomerun as it is in another building (long story)
  • caddy

    • this used to be for accessing my homerun but is now just for remote access via ssh.
  • outside access

    • this is a VM that connects to the VM in linode to route traffic. It runs Ngnix proxy manager and is a wireguard client.
  • docker1

    • this hosts Matrix and Drupal. Matrix is basiclly unusable for me because as soon as I start joining rooms the resource usage shoots though the roof and it sometimes crashes
  • Linode

    • I have a VM in Linode that routes traffic into outside access via wireguard. It also runs Ngnix proxy manager.
  • Friendlywrt

    • I have a Nanopi that acts as a firewall and dhcp server to isolate everything.

This is a incomplete list and doesn't include my firewall rules or other security measures. I also run Debian on all VMs as it is easy to setup and maintain. If you are looking for somewhere to start I would start by installing nextcloud in a docker container. Proxmox will scale the best but if you are just looking to learn I would install Debian and docker compose. TrueNAS is great for a NAS but its designed to be an appliance so it can be limiting.

[–] themurphy@lemmy.world 1 points 8 months ago

Great rundown, thanks!

I don't have a background in software, but I think I'm doing okay with my Raspberry Pi's so far.

And I'm looking for more challenging stuff, so this was very helpful.