

Which software do you use for backups?
Which software do you use for backups?
Install Virtualbox (or some software to handle virtual machines).
Install Debian (or some other OS of your choice, I won’t judge if you prefer Windows).
Update your OS (apt update && apt upgrade -y
on Debian).
Take a snapshot of your VM’s current state after updating. Saves a lot of time if you mess up or want a clean slate.
Now you decide on what you want. Do you want to install n8n or Node-RED for automation? Do you want to use Immich for pictures? Paperless to save papers in a digital format? Audiobookshelf to listen on your books or podcasts? Jellyfin to stream your media? Set up a Minecraft or Factorio server?
Once you have decided on what you want to do, try to do it in your virtual machine.
Once you understand how to set it up and configure it to your liking, decide on how you want to host it. I took an office computer, added a few HDDs and replaced the case with a bigger one and it’s now my home server, but any old laptop will do. Just make sure to take backups.
I used to have a Dell R710 and a virtual machine for each service I hosted, but I have moved to docker because it as simple as taking the often provided compose file, tweaking it a bit (where to store data etc) and running it with docker compose up -d
.
I asked my mother the same when I was a kid (why did you not become a boss), and she said she did not want to. Once I started working, I understood and agree 100%.
Which language can nil an int
?
Same here. I remember playing minecraft and wanted to install some mod on my server. There were instructions and I followed them. Problems? Search the web.
I also tried to run TeamSpeak on an RPI at some point, and that was when I learned about ARM.
You are welcome.
Thanks for the research! I will send the museum an email and ask if they know anything.
or genuinely a Swedish person who didn’t realize that impregnerade had a double meaning in English.
Or perhaps someone who knew what they were doing (but more likely not). Perhaps a way to market them outside of Sweden, though that really depends on when this was.
I used to support a few companies hosting their own email servers (I supported the mail server software). I will never host my own email, not unless I have a gateway between me and world, someone to configure the DNS and all that.
I second Debian because of the amount of information out there.
Since multiple people will be using the same IP when using a VPN. If one person is a bad actor and causes the IP to be blacklisted, it will affect you too.
Someone came up with a reasonble explination: https://www.tumblr.com/adobe-outdesign/tagged/this post has everything... language... mistranslations... impregnated goblins…
This is a hilarious mistranslation actually. I suspect it originally said something along the lines of “Impregnerad mot vatten”, i.e. “Water proof”.
Impregnering is the process of making a material resistant to water/heat. The swedish word for water (vatten) is similar to the word for goblin (vätten) so I guess there was a mixup.
It’s also possible “goblin” was used as a translation of “tomte”, the creature depicted riding the wagon, with impregnated referring to the matches being made of impregnated wood. The implication of the two words combined in English might not have occurred to whoever designed it, since “impregnerad” isn’t really used in that meaning in Swedish.
“Impregnerad mot vatten/vätten” would more likely have been translated as “impregnated against water/goblin”. The absence of “against” would make it very clunky in both English and Swedish, which kinda points against it.
Just use https://www.fakemailgenerator.com/ or some other service like that.
From their README. Have you looked at their forum?
We cannot provide direct technical support. Get help running this software in your own environment in our unofficial community forum.
This thread has a link to someone’s Dockerfile for their development.
Here is two enteries from my Caddyfile
:
ip.domain.tld:80 {
respond "{client_ip}" 200
}
git.domain.tld {
reverse_proxy forgejo:3000
}
This is all I need and Caddy will handle the rest. I have created a network with podman/docker that I add to any container that I need to reverse proxy to.
I meant more figuratively. Finally managed to move my compose files to nix files thanks to compose2nix. One thing that throw me for a loop was that podman (or perhaps nix) creates a service named <backend>-<service>. Compose2nix handles this accordingly but I had a few hours of head scratching until I figured that out.
I mean keep using port 22 on the server and redirect whatever port you want in your firewall (your router unless you have a dedicted fw) to port 22. Don’t change the ssh port on the server at all.
Why change the SSH port of a home server, which most likely is not reachable from the outside anyway?
And if it is, why change it on the server and not in the fw?
I installed a new server at home and went with NixOS. It looks super cool but it takes so much time to learn everything. The only thing keeping me from going back to Debian is how easy it was to permanently mount drives (and save a configuration for any future install or mishaps).
(I.e. mount, nixos-generate-config
, nixos-rebuild switch
and done!)
I had a Raspberry Pi once and wanted to move file from the current folder to some other folder. I typed
mv /* /path/to/folder/
and move everything in the root directory and down to this other folder.EDIT: Meant to say that snapshots are cheap backups. I ended up reinstalled the OS.
Correct would have been dot slash:
mv ./* /path/to/folder/