Most Linux users know some systemd by now. There is systemd stop $someservice and systemd disable $someservice. If you think that’s all one has to know about systemd you’re missing out on a lof of features. That’s not the story for today tho.

Some services tend to come back even when disabled and stopped. Socket services come to mind. This is e.g. the case for rpcbind starting a portmapper service on tcp/111 that can be used for a DDoS reflection attack. There are various ways to deal with this from uninstall to firewalling or to mask this service. Since everbody on Linux gets to pick their own poision I decided to use mask to make sure this can simply no longer start without having to break dependencies by removing it or fiddle with the firewall:

systemctl stop rpcbind.service
systemctl mask rpcbind.service
Created symlink /etc/systemd/system/rpcbind.service → /dev/null.
systemctl daemon-reload

A masked service can not even be restarted manually any more. It’s dead in the water as long as this symlink exists.

Read more on this from Poettering himself:

http://0pointer.de/blog/projects/three-levels-of-off

In the Beginning was the Website by Jan-Lukas ElseJan-Lukas Else (jlelse.blog)
I think Desmond Rivet wrote a very, very good explanation about the IndieWeb. Here are my favorite pieces from this article: It's about control of content, … When you post a tweet or a status update (or any form of content), it ceases to be yours the second you hit the enter key. What happens to y...

Nice comprehensive intro to why IndieWeb and not silos.

I’m warming up to ActivityPub by fluffyfluffy (beesbuzz.biz)
While Publ is still going to be an IndieWeb-first platform (simply because it's so much easier to integrate -- having modular Lego bricks and a pick-and-choose functionality set that is as simple as adding it to one's HTML templates is a *very* compelling approach), I've had some good discussions regarding ActivityPub lately and it's starting to seem a bit more possible to add that as an add-on for Publ.

Good thoughts about ActivityPub and IndieWeb

Twitiverse by Matthias PfefferleMatthias Pfefferle (notiz.blog)
Jack Dorsey, CEO von Twitter, hat vorgestern einen spannenden Thread auf Twitter veröffentlicht: Twitter is funding a small independent team of up to five open source architects, engineers, and designers to develop an open and decentralized standard for social media. The goal is for Twitter to ulti...