84
What are people daily driving these days?
(lemmy.world)
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
Artix (Basically Arch without Systemd)
Does artix only boot without systemd or is it completely systemd-less? If it is systemd-less, how do services like docker work with that?
Most services just need the init system to start, stop and monitor them. There's no special integration needed for each of them beyond running a command, monitoring the PID, and killing the PID when it's time to stop.
If you mean the special integration of docker and podman with systemd, first of all that's only required in rootless mode and not everybody runs rootless (most users probably run root docker). In rootless mode you have to manage each container individually as if it were a standalone service instead of just managing docker. Basically you have to integrate each container into the init system, whatever that is. There are some tools that make it easier to with podman+systemd because they write the systemd units for you but you can do it with any init system. The distro mostly doesn't care because you have to do the work not them.