“not running in a container” is not “running on bare metal”. It’s just running outside a container.
- 1 Post
- 201 Comments
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Recommendations for an all-SSD home server?English
2·9 months agoenough, a lot, more demanding.
You need to give some sort of guidance here.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Making setups resilient to outagesEnglish
71·9 months agoHow much money are you willing to spend? Resiliency is expensive.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Is self-hosting becoming too gatekept by power users?English
54·10 months agoSelf-hosting is trivial and everyone can do it.
So is open heart surgery. Unless you want it to end successfully.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Is self-hosting becoming too gatekept by power users?English
71·10 months agoHave you forgotten that you too started at 0?
Not at all. In fact I remember the day my server was hacked because I’d left a service running that had a vulnerability in it. I remember changing passwords, calling my bank to ensure there had been no fraudulent charges, etc. I remember “war driving” to find vulnerable WiFi networks. I remember changing default passwords on a service setup by a client of mine.
As I said - it’s not gate-keeping it’s experience.
Yes, it sometimes can be difficult and frustrating, but so long as someone, anyone, is willing to try and learn and fail and retry, they can get my help
Teaching is “gate-keeping” apparently. You can’t tell somebody that they need to learn something! You just need to give them a link to a url and say “run this thing as root and your stuff will work - totally not a scam tho”.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Is self-hosting becoming too gatekept by power users?English
4010·10 months ago“Has anyone noticed that medical doctors gate-keep people doing open heart surgery?”
Why do you assume self-hosting is and can be trivial? It is NOT for everybody. You should have some base level of technical knowledge. You should expect to need to learn some things. It’s not a badge of honor, it’s experience.
My project focuses on building a tool that makes self-hosting more accessible without sacrificing data ownership
Good luck with that. Don’t get your users pwned in the process. You’re now responsible for the security of people who think “opening a command line” is too difficult.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•MPV: The Ultimate Self-Hosted Media Solution You're Probably Sleeping OnEnglish
60·10 months agoI’m happy you’re discovering the Linux CLI, but this is pretty ridiculous. mpv, vlc, mplayer, etc. all serve very different uses from jellyfin.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•how do you explain selfhosting to the non-techies in your life?English
173·10 months agoI don’t.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•How often do you update software on your servers?English
2·10 months agoClearly you don’t know.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•How often do you update software on your servers?English
3·10 months agoIf I wanted to run updates frequently I would run arch lmao. Even if I did apt update every day, debian stable doesn’t get that many updates.
You’re not updating for features you’re updating for bug and security fixes. That’s why Debian stable doesn’t have many updates. But the ones they do are typically important.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•How often do you update software on your servers?English
51·10 months agoThat’s… Not how it works… Debian is “stable” not “secure”. You use Debian so that is easier to run updates frequently since they’ll be unlikely to break things.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•How often do you update software on your servers?English
21·10 months agoAll systems, daily via a single ansible script. That’s apt update, upgrade and reboot if needed (some systems set to only reboot with a separate script so I can handle them separately).
Rarely have any sort of problems.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Linkwarden downloaded the whole flipping Internet ...English
242·11 months agoSounds like you bookmarked the whole flippin’ Internet.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•[question] Help me access my local homeserver using a public domain nameEnglish
2·11 months agoSomething that can make troubleshooting DNS issues a real pain is that there can be a lot of caching at multiple levels. Each DNS server can do caching, the OS will do caching (nscd), the browsers do caching, etc. Flushing all those caches can be a real nightmare. I had issues recently with nscd causing issues kinda like what you’re seeing. You may or may not have it installed but purging it if it is may help.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•[question] Help me access my local homeserver using a public domain nameEnglish
31·11 months agoIt’s not resolving, play around with dig a bit to troubleshoot: https://phoenixnap.com/kb/linux-dig-command-examples
I’d start with “dig @your.providers.dns.server your. domain.name” to query the provider servers directly and to see if the provider actually responds for your entry.
If so then it may be that you haven’t properly configured the provider to be authoritative for your domain. Query @8.8.8.8 or one of the root servers. If they don’t resolve it then they don’t know where to send your query.
If they do, the problem is probably closer to home either your local network or Internet provider.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•What's the real danger of opening ports?English
32·11 months agoThis is an awful analogy…
squeezing every last drop of resource form tired old hardware
This is such a myth. 99% of the time your hardware is doing there doing nothing. Even when running “bloated” services.
Nextcloud, for example, uses practically zero cpu and a few tens on mb when sitting around yet people avoid it for “bloat”.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Those who are hosting on bare metal: What is stopping you from using Containers or VM's? What are you self hosting?English
1·11 months agoOh for sure - containers are fantastic. Even if you’re just using them as glorified chroot jails they provide a ton of benefit.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Those who are hosting on bare metal: What is stopping you from using Containers or VM's? What are you self hosting?English
1145·11 months agoContainers run on “bare metal” in exactly the same way other processes on your system do. You can even see them in your process list FFS. They’re just running in different cgroup’s that limit access to resources.
Yes, I’ll die on this hill.

“Bare metal” has traditionally meant without any os either. Your code executes directly on hardware and has direct control over everything. Like a micro controller.
Code in a container executes on the hardware in exactly my the same way as code not running in a container - with the os as an intermediary.