communism
@communism@lemmy.ml
- Comment on 2025 Self-Host User Survey: Open for Submissions 4 days ago:
There was one question where it wouldn’t let me do this. I think the media streaming question I had to click “Other”.
- Comment on Those who don't use dashboards, how are you managing your services? 5 days ago:
Never used a dashboard… I just manage my services on the cli with plain docker commands.
- Comment on How to manage docker compose apps? 6 days ago:
Watchtower for automated updates. For containers that don’t have a latest tag to track, editing the version number manually and then
docker compose pull && docker compose up -d
is simple enough. - Comment on Recommendations for Note taking app with simple needs 1 week ago:
Yes, if you use the “task list” block. You can also have checkbox bullet points but I don’t use them, not really sure what the use-case for those are when you can just use the task list.
- Comment on Recommendations for Note taking app with simple needs 1 week ago:
I self-host Notesnook and found it easy to set up. Been using it as my main note-taking app for years now and I’m really happy with it.
- Comment on How do you secure your home lab? Like, physically? From thieves? 1 week ago:
Someone who’s in the business of stealing computers would just stick it in a faraday bag. I guess for an entire server you’d need a sizeable cage though.
- Comment on Those who are hosting on bare metal: What is stopping you from using Containers or VM's? What are you self hosting? 1 week ago:
Idk about Immich but Vaultwarden is just a Cargo project no? Cargo statically links crates by default but I think can be configured to do dynamic linking too. The Rust ecosystem seems to favour static linking in general just by convention.
- Comment on Microsoft blocks Israel’s use of its technology in mass surveillance of Palestinians 1 week ago:
This is only because Microsoft’s employees have been relentless in their pressure on their bosses. They’ve been doing occupations of Microsoft buildings, office crashes, etc. They fire the employees who take part but then there are more employees who crop up in their place; there are just too many to fire them all. And Microsoft still provides a lot of support to Israel, so don’t be fooled into thinking that things are over.
- Comment on Google just broke *all* third-party web clients, including yt-dlp; a full JS implementation is now required. 1 week ago:
No, FreeTube is its own thing, but it can fall back to an invidious instance. Idk why it fails for me with inv.nadeko.net as my default instance though.
- Comment on Google just broke *all* third-party web clients, including yt-dlp; a full JS implementation is now required. 1 week ago:
Yeah have been using inv.nadeko.net as FreeTube broke for me. Unfortunately there seems to be some kind of bandwidth throttling as I’m getting 720p videos only (my internet is fine for 1080p and I was getting 1080p on FreeTube).
- Comment on Looking for a simple personal homepage 2 weeks ago:
I don’t think there is really any learning curve to “learning HTML” if you are not trying to do anything funky and you just want a simple static website that functions, like OP said, “like a business card”. You may as well just type it out yourself. If you’ve never written HTML before just look at w3schools.
- Comment on Beginners Questions about Audiobookshelf, DNS and nginx 3 weeks ago:
You get a domain name, and use an A record to point it towards your server’s public IP address.
You tell nginx to forward requests to a given domain. For instance, you could tell nginx to forward requests to foo.bar.com to 127.0.0.1:1337. To do this:
http { server { server_name foo.bar.com; listen 80; location / { proxy_pass http://127.0.0.1:1337$request_uri; } } }
Note that this is a very basic setup that doesn’t have HTTPS or anything. If you want an SSL certificate, look into Let’s Encrypt and Certbot.
Also, the service you’re hosting (which I’m not familiar with) may have an example reverse proxy config you should use as a starting point if it exists.
- Comment on Have you tried self-hosting your own email recently? 3 weeks ago:
Been self hosting email for a good while now and it’s been largely painless. My emails are not getting marked spam either. Although my only outgoing mails are to FOSS mailing lists and occasionally to individuals, not for anything business related.
I would say that if self hosting email sounds like something you’d be interested in, then it probably is worthwhile for you. I like being able to configure my mail server exactly the way I want it, and I have some server side scripts I wrote for server side mail processing, which is useful as I have several different mail clients so it makes sense to do processing on the server rather than trying to configure it on my many clients. It definitely falls into the “poweruser” category of activities but I’ve had fun and I enjoy my digital sovereignty.
- Comment on What would stop you from switching to a flip phone (or dumbphone) in 2025? 3 weeks ago:
A flip phone/dumbphone would sort of be mutually exclusive with my use case. I use my smartphone nearly exclusively as a lightweight mobile computer for web browsing, SSHing into my server, and messaging over internet (not SMS). I rarely use the “phone” features of my phone, i.e. phone calls and SMS. So I’d be losing out over the features I do use, in favour of features I don’t use.
If you’re being distracted by your phone and a dumbphone works for you, good on you. I think most people are like me and use their phones as a small mobile computer rather than a phone though, in which case distractions are best handled with one of the many apps/browser add-ons/etc that block websites or apps.
- Comment on 3 weeks ago:
Do you have an old laptop somewhere? You shouldn’t need a new machine for a home lab if you’re just hosting services. Most of my self hosted services are on a fairly lightweight VPS.
And yeah, I’d second the commenter suggesting you look for a second hand computer somewhere instead of buying HP.
- Comment on Proxmox or Docker? 4 weeks ago:
Why ZFS?
- Comment on Proxmox or Docker? 4 weeks ago:
I think in general people start out in VMs and advance to containers. If you are already using containers stick with it, otherwise you are taking a step back.
Interesting perspective—I had thought that running an entire VM would be more difficult, but I’ve never used virtualisation for server stuff, only ever used VMs with a GUI VM manager on my personal computer. Thanks for the input.
- Submitted 4 weeks ago to selfhosted@lemmy.world | 39 comments
- Comment on Alternative to github pages? 4 weeks ago:
Codeberg Pages. Neocities.
- Comment on Value Age verification 4 weeks ago:
B seems like a huge issue given that there are lots of adults who are not eligible for a credit card.
- Comment on Backup/Server Options - is Syncthing / Nextcloud really the go? 5 weeks ago:
You’ve not made it clear what exactly it is you want. Nextcloud or syncthing are good for syncing personal files. If you want to make server backups, they’re not gonna be the way.
If you want to automate backups, you could just use a cronjob to make a tarball and rsync it?
- Comment on [deleted] 1 month ago:
I see, that’s interesting. Well glad that it’s not hard to switch away from systemd on Debian for those who want it—although I still think if you don’t want systemd you should just pick another distro, given that the Debian installer doesn’t let you pick another init.
- Comment on [deleted] 1 month ago:
On Debian you can use both sysvinit and openrc
Huh really? Then why does Devuan exist? (I don’t use Debian for context)
- Comment on [deleted] 1 month ago:
I use Alpine for servers because I like its simplicity. Not in terms of computational power requirements, just in terms of user experience.
Alpine is an interesting choice for hosting
I’d say servers are one of the main uses of Alpine, second to containers. It would be a much more unusual choice for a desktop OS.
- Comment on [deleted] 1 month ago:
Alpine already uses OpenRC. There’s no option to use systemd with Alpine.
Popular alternatives include runit (which Void uses), OpenRC (Gentoo and Alpine), s6, sysVinit, dinit. The suckless people have also written some suckless inits—I think one of them’s called sinit.
So what are the alternatives that work with both Alpine and Debian?
None. On Alpine you can only use OpenRC and on Debian you can only use systemd. Most distros don’t let you change out the init system. If you want systemdless Debian look into Devuan.
Judging from this post, I would say you should not be looking to change out your init system as, no disrespect intended, but you really don’t seem to know what you’re talking about. You don’t even know what init systems your operating systems (Alpine and Debian) are using, let alone the details of different init systems.
Some people have strong opinions about init systems. They are nerds with reasons behind those opinions. You don’t seem to have many reasons and you don’t seem to be particularly invested in the debate. I would say it’s not worth your time to change operating system (which is what you would need to do to change your init) just because you heard vaguely that systemd is bad. If you reach a point where init system matters to you, then you won’t need to be asking the questions you’re asking in the OP.
- Comment on LibreOffice is right about Microsoft, and it matters more than you think. 1 month ago:
I think the point about convenience is more about familiarity than Windows being inherently easier. Speaking as someone who switched from Linux to Windows previously, I found the change very difficult as a lot of the FOSS software I was using didn’t have Windows versions. I had a nightmare trying to read one of my LUKS-encrypted drives on Windows. I was practically using WSL for everything. That’s not that Windows is inherently harder than Linux; it’s just that I was used to Linux and the FOSS ecosystem, just as some are used to Windows and their proprietary ecosystem.
If your hardware isn’t working properly, you have to find drivers that run on Linux; if the developer never made Linux-compatible drivers, you have to figure something else out.
Most drivers come pre-installed with the Linux kernel or your distro—I never had to manually install any drivers for my current hardware. Compared to Windows where you will have to go out of your way to install graphics drivers for NVIDIA or AMD depending on your graphics card, if you want to make the most out of your card’s capabilities.
Installers made for Windows don’t need any special TLC; you double-click them and they work.
See, I think if you’ve used Linux for any length of time you’d quickly find the system of package managers way easier than the system of having to hunt down an .exe on the internet, guess whether or not it’s a legit copy or if it’s malware, and manually manage updates for all the different software you have installed.
I agree that people stay on Windows out of convenience, but it’s not convenience as in Windows is inherently easier, but it’s convenience as in you’re used to the way things work on Windows. Because in my perspective, things do “just work” on Linux, and that’s because I’m used to the way things work here.
- Comment on Microsoft Is Now Being Sued Over Sunsetting Windows 10 1 month ago:
I doubt that would hold up in court as false advertising given the significant time gap between them marketing Win 10 that way and them releasing Win 11.
- Comment on Microsoft Is Now Being Sued Over Sunsetting Windows 10 1 month ago:
That wasn’t legally binding.
- Comment on Leaving GitHub. Music server alternatives? 1 month ago:
I think you’re still avoiding the point:
I will never wait for any individual or group to give me the go ahead to do what I think is the right thing. BDS isn’t perfect.
The point isn’t that you have to follow the BNC specifically. The point is that announcing you’re not using any software hosted on GH, on a small social media platform, is far from organising a boycott. If you are serious about organising a boycott, that is what you do in the movement, with the masses. As it currently stands, you are simply making a personal consumer decision.
Personally, I don’t think it’ll be possible for this to become a mass boycott (which it needs to in order to have effect), just because you’re going to struggle to explain to everyone what GitHub even is let alone how to boycott any software that’s hosted on it. That’s why the demand to boycott GitHub ie not host your own software on there is far easier; that only applies to people who make software, who do know what GitHub is and understand how to not use it. If you don’t know what GitHub is then you’re already boycotting it. Meanwhile, your version of the boycott requires teaching people what git is, what a git repo is, and what a git forge is, and then giving them a very long list of software that they need to boycott in order to join you. For the reasons that BDS explains in terms of their tactic of targeted boycotts, that’s not going to work, because in practice very few people will boycott the full list of software and everyone will boycott a few GitHub repos and those repos will be different for each person.
At the end of the day, boycotting is a political strategy to force change through. It’s not about showing how moral you are. If you can’t get a critical mass of people with you, your consumer decision is as impactful as your decision of what shirt to wear today.
I will drop as many projects as I can. Media players, web browsers, mail clients, social platforms - can all be changed for more ethical alternatives. It doesn’t have to be black or white.
That’s still avoiding the real problem of defining strict boundaries for your boycott. It is still entirely unclear to me how I could join you even if I wanted to. What are you proposing we boycott? I adhere to BDS, who have given pretty unambiguous guidelines on how to boycott. Even their Microsoft boycott accounts for “do as much as you can”; they acknowledge that some people will be forced to use MS products, and encourage people to move away from them unless they have no choice. That’s understandable enough and the average person knows exactly how to join that boycott if they want to.
Like I said, if you’re serious about this, you need to go somewhere other than Lemmy. And if you’re not serious about this, then stop pretending you’re making a political decision, and accept that you are just making a personal consumer preference.
- Comment on Leaving GitHub. Music server alternatives? 1 month ago:
No, I’m not arguing that we should be users of Microsoft. You’re still not understanding what I’m saying. I don’t use Microsoft’s services, including their free ones. Software that happens to be hosted on GitHub is not Microsoft’s software.
You can do whatever you want as an individual. But as a political actor, you should be participating in organised boycotts, such as BDS’s boycott of Microsoft. BDS’s boycott is already fairly wide-sweeping, going as far as to ask people to e.g. stop playing Minecraft and Skyrim, even if they already own the game. Avoiding using Microsoft’s products like this is effective because, even if you’ve already bought the game, you lend Microsoft more cultural capital by proliferating their products.
BDS has not, on the other hand, called for a boycott of all software that happens to have a GitHub repo. If you think they should do that, take it up with BDS. If BDS called for such a boycott, it would get much more momentum behind it.
As it currently stands, you are boycotting all software that has a GitHub repo on your own. This is not going to have any effect. You are going to be hard-pressed to get people to join your boycott. What kernel do you use? The Linux kernel has a GitHub mirror. The majority of FOSS projects where collaboration occurs off of GitHub still have a read-only GitHub mirror. Is your boycott suggesting that everybody should be using OpenBSD? That’s going to be a very hard sell.
BDS has achieved huge victories because it offers targeted boycotts that the average consumer is perfectly capable of doing, and it has a mass movement behind it. There are also grassroots boycotts that have been organised outside of BDS, such as the Starbucks and McDonald’s boycotts, but again, these caught on because they had the backing of people active in the movement and were willing to organise said boycotts. You’re a random Lemmy user who, if you are serious about organising a boycott, you’re in the entirely wrong place to do so. You won’t achieve anything doing what you’re currently doing.
You’re welcome to make whatever consumer decisions you want, but don’t confuse that for political organising.