this post was submitted on 08 Jun 2023
10 points (100.0% liked)

Free and Open Source Software

19978 readers
3 users here now

If it's free and open source and it's also software, it can be discussed here. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 3 years ago
MODERATORS
 

I just recently started playing around with an old pc as my homeserver and am curious of any recommendations for lesser known self hostable foss software that you would recommend

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 0 points 2 years ago (3 children)

Can you share with me what OS you are running? At the moment I am using MX Linux because it is familiar to me, but is likely suboptimal for running a server.

I think docker is really cool, but felt like a lot of work compared to using flatpaks or a package manager, but I am really limiting myself and it is probably not that hard to learn.

[–] [email protected] 1 points 2 years ago* (last edited 2 years ago) (1 children)

Oh, as for os, i'd recommend dietpi on a SBC that uses a memory card, because it logs to RAM so you don't wear the card as much, and Debian for everything else. You don't run Into problems with Debian. Unless you like snaps, then go with Ubuntu. As much as I hate snaps, they are good for some services that tend to break on upgrades, like has been my experience with nextcloud.

[–] [email protected] 1 points 2 years ago (1 children)

Ooh. I have a RPI 3 that I never use. Maybe I am overcomplicating this. I tried to use it for managing my 3D printers but it was just a hassle. I think it is actually cheaper to get one of those Creality boxes at this point instead of rolling my own.

Plus SBCs are quiet. Okay, I will try it.

[–] [email protected] 1 points 2 years ago (1 children)

Octoprint on a pi is great for 3d printers. You can even use a pi zero of you disable Bluetooth (it uses the better serial chip otherwise). I've never seen the creality boxes. I'll have to look into it.

[–] [email protected] 0 points 2 years ago (1 children)

Yeah, I was using octoprint. I think I just do not understand networking enough to get over random problems I have.

Actually, I got it working. It was fine for one printer, the set the z offset into the bed so that was a no go. Never got the webcam to work, which is most of the reason I wanted it in the first place.

[–] [email protected] 1 points 2 years ago

The webcam is... not easy. Or anyway, it worked when I used a raspberry pI with a raspberry pi camera. Now I use some orange pi zeros with USB cameras, and the setup was tricky. Even worse, it seems to change the camera device every few reboots, so it's basically useless. My printer is by my desk though, so it's not a priority for me. If I really wanted a camera i'd probably set up a cheap WiFi camera that exposed a stream and just set octoprint to point to that stream instead of serving a local one itself. I also use a relay to power my printer on and off, and I think if I was going to set it up again i'd just use a smart plug and one of the plugins to turn it on and off.

[–] [email protected] 0 points 2 years ago (1 children)

The thing about docker is, you can set it up with all your data mounted into a folder in your home directory. So, for instance, ~/docker/jellyfin/data, and your docker compose file for jellyfin is in the jellyfin folder. So if you want to move it to a different system, you just rsync the folder over and run docker-compose up and it's done. Also, backups are super simple, because you just stop the container, rsync (or Borg or duplicati, restic... whatever) your container's folder over. Of your server gets completely trashed, you just restore your backup to another computer and you're good. Usually the better maintained projects are even architecture aware, so you can move from Intel to arm or whatever. It's totally worth learning.

[–] [email protected] 1 points 2 years ago (1 children)

Okay. Awesome. I was seriously thinking about getting NAS or a specialized media box like an NVIDIA Shield or Dune HD, but I have plenty of older computers that can do the job, so it seems like a waste. I have Rokus that handle video playback, so I just need to set up streaming.

I do need to get better at backing up! My computer has like, 250 GB SSD and a TB HDD I never mount, but definitely need to use for offloading all my data. Just downloading a few games really eats up my disk space. Need to get that sorted out too.

Damn I am so lazy with computers.

[–] [email protected] 1 points 2 years ago (1 children)

I used a really old laptop with a bunch of USB disks for quite a while. Then I made a naskiller 4, and it was super easy to migrate because I used docker for everything. I'd recommend searching up the nasskiller builds whenever you do want a NAS. They price everything out and tell you exactly what you need and what options you have, and it emphasizes getting used hardware off eBay for cheap.

Backing up is always a challenge. I'd suggest looking into duplicati, because it's super easy for servers and desktops.

[–] [email protected] 0 points 2 years ago (1 children)

Nice! Thanks for the tip. They get so expensive.

I believe in used hardware. Most of my computers I inherited or got at flea markets, yard sales, and thrift stores. Ebay is no different, and probably significantly better if refurbished.

[–] [email protected] 0 points 2 years ago (1 children)

Oh yeah. I love old hardware. I'm hesitant to use desktops as servers anymore because of the power they use, but laptops in particular are great. You can get an old Dell for next to nothing and replacing their batteries is super cheap. It has its own battery backup. I even got a USB 3 card for mine. Used it for several years and when I went to migrate to my nas I found out the LCD had gone dead. Hadn't noticed or cared.

[–] [email protected] 1 points 2 years ago

That is actually a good point. I was considering getting a couple of UPS for my main computer and server, but a laptop would do the job. I should pick one up anyways.

Yeah, power consumption sucks. I do not want to contribute to the waste culture, but I also don't want to overspend on resources.

[–] [email protected] 0 points 2 years ago (1 children)

Strange, Lemmy didn't tell me you replied. Well, I run mostly Ubuntu Server OSs for Linux for work, but at home I am cheating and using a Synology NAS as my home server with docker installed on it. CentOS used to be a good go-to for servers, but I think Redhat made some changes to the way it releases and I think a lot of the CentOS users moved to other distros.

[–] [email protected] 0 points 2 years ago (1 children)

Interesting. I never used CentOS, but I think it makes sense to run an OS designed to be used in servers. That would probably make my life a hell of a lot easier than setting up everything on my own.

Good call.

[–] [email protected] 1 points 2 years ago

Honestly, with Linux, the biggest difference between server distros and desktop distros is if a GUI is installed by default. But one advantage of using a well known server distro like Ubuntu Server is that most articles on the Internet assume you are running it.