this post was submitted on 31 Mar 2026
19 points (95.2% liked)

Linux

64214 readers
568 users here now

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.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
19
Artix Linux Installer (files.catbox.moe)
submitted 1 day ago* (last edited 1 day ago) by Matty_r@programming.dev to c/linux@lemmy.ml
 

Lazy-Artix - CodeBerg

Hey all, just thought i'd share my Artix Linux installer script. I've wanted to give Artix a solid go, and decided to bring up my old Arch Linux install script to be used with Artix. I'm still working on it a lot and there is definitely some stuff in there that needs to be updated - but I'm pretty happy with it so far.

This is written all in bash, and is to be used with the base Artix Linux OpenRC ISO. Right now i'm focusing on getting KDE up and going, and then fixing up some of the bundles that can be selected.

It's nothing special - I started it years ago for Arch before the official installer existed, and only myself and a couple others have used it so it hasn't had a great deal of scrutiny. But anyway, just thought i'd share it.

(No AI has been used, also I migrated this over from GitHub so there are a few bits and pieces left over from that)

Edit: Just thought I should mention I sped up the video, the install actually took about 3 mins :)

top 18 comments
sorted by: hot top controversial new old
[–] Zeddex@sh.itjust.works 1 points 20 minutes ago

I was confused for a second because I missed which community this was posted in. I kept waiting for some joke at the end like it booted Debian or something. I thought I was in Linux memes. 😆

[–] HouseWolf@pawb.social 5 points 1 day ago

I've been fucking around with Artix in a VM trying both Runit and S6.

Having never successfully installed Arch manually before, it was easier than I thought to get a desktop up and running...getting Pipewire to work on the other hand...still working on it. >.>

Honestly think the official installation guide needs some updating. I had to go off and find other community written guides to get certain things working. And small issues like the linux-firmware package downloading Nvidia drivers on my full AMD system.

I'm still dedicated to switching from Endeavour even though that distro has been very good to me. Their official statement on the matter didn't inspire confidence, more just shifted the blame to FOSS as a whole. No words on plans to protect users or fork/switch away from mainline SystemD when push comes to shove.

[–] emotional_soup_88@programming.dev 5 points 1 day ago (1 children)

Sweet! If and when Arch implements age verification, Artix is where I'm seeking asylum.

A question: I have a fair understanding of Linux - been using it for five years - but only with systemd. Is it hard to transition to other init solutions? Is one better than the others? What about sysVinit?

[–] Matty_r@programming.dev 3 points 1 day ago (2 children)

Its a learning curve for sure, I'm still learning it myself. Openrc seemed to be fairly popular, so thats why I started with that.

There is a few changes such as not using service files and instead using crob jobs, seeing the logs of your tasks need to be hooked into using syslog-ng to consolidate the logs. I'm still learning how you see stuff like the service status etc.

Its been fun learning something new again, and writing a script like this to set it all up for me has been a great way to learn it all.

[–] MonkderVierte@lemmy.zip 2 points 1 day ago

Btw, s6 (runit too?) supports user services and for dinit exists turnstile.

Well then, that sounds great, because I love tinkering and learning new stuff. :)

I do recall using some minor distro - perhaps antiX - a long time ago to save a broken laptop. I did do init [some number between 0-5] to manipulate the system's power state, I think. That's my experience with it haha.

[–] pineapple@lemmy.ml 0 points 1 day ago (2 children)

I dont really understand artix linux. Is systemd really that bad?

[–] emotional_soup_88@programming.dev 5 points 1 day ago* (last edited 1 day ago) (1 children)

I've been using Linux for five years exclusively with systemd, without noticeable issues. I'm only considering the switch since the main branch - which is still the one being used by most distros by default - has added an Age parameter in some config file. Which isn't verification in any sense - you may just leave it blank until an app or the OS requires it - but it's ideologically not my cup of tea.

[–] ChrisG@lemmy.world 3 points 21 hours ago

The inexorable assimilation of large parts of Linux userland by a huge binary constructed by a corporate sponsored developer. The rush by the lead dev to embrace surveillance law infrastructure. But yeah, no big deal right?

"The tragedy of systemd"

https://archive.org/details/lca2019-The_Tragedy_of_systemd

[–] Adl@lemmy.dbzer0.com 3 points 1 day ago (2 children)

the wikipedia article summarizes very well the concerns of the community, mainly under the "Reception" section.

[–] pineapple@lemmy.ml 1 points 1 hour ago* (last edited 1 hour ago)

The article also characterizes the architecture of systemd as similar to that of svchost.exe, a critical system component in Microsoft Windows with a broad functional scope.[117]

Comparing someone's Linux software with windows software is probably the worst insult you give give a Linux dev.

But yeah that makes sense, it's just kind of bloated and has more features than it needs.

Also a lot of other libraries depend on systemd?

I can understand now, Linux has always been about options and systemd is making it harder for people to chose different options.

[–] Specter@piefed.social 0 points 1 day ago (2 children)

Okay, other than “I believe it’s against the Unix Philosophy” and “hypothetically it will become bloated”, is there anything else worth knowing?

[–] MonkderVierte@lemmy.zip 4 points 1 day ago* (last edited 12 hours ago) (1 children)
  • only systemd or any other init/service manager can exist in the same repo (some distros try hacks with shims and wrappers)
    • that and software-side dependencies (a design "flaw" in the service manager part) forced popular distros to Systemd and they can't get away
  • runs only on Linux and a very limited set of architectures
  • not-invented-here and scope creep (debugging dns issues radicalized me against Systemd)
  • design faults as a "integrated service suite" (doing init and services in one), leading to more critical vulns than all other init together
  • unpredictable service run order, together with shitty logging

Stuff like that.

Edit: yees, Gentoo & co. support Systemd or Openrc. But that one is mostly service management and was designed as a drop-in, doesn't count.

The sad part is, some of it's nicer new features create further dependencies, won't get implemented in a independent way.

[–] Specter@piefed.social 3 points 1 day ago

Thank you for the thorough technical explanation, it is clear there are challenges for devs and I understand why the pushback exists now.

As an end user these are things I haven’t felt, are essentially invisible to me so I never felt the need to run away from systemd.

Thanks again.

[–] procapra@lemmy.ml 6 points 1 day ago (1 children)
[–] Specter@piefed.social -1 points 1 day ago (1 children)

It’s not really mandatory, but I take your point.

I guess it’s the choice between many minor programs running in tandem, potentially only held together by a few maintainers, or an init system that unifies all those programs under one flag, with multiple maintainers including corporations, but the chance for it to get enshittified.

I personally have no choice of init system since I use NixOS. But I also don’t necessarily think the death of the personal computer will come from an init system, it will sooner come from hardware becoming unavailable/too expensive for individuals to buy (basically what we are seeing happen now).

[–] juipeltje@lemmy.world 3 points 1 day ago (1 children)

There's always Guix for a declarative system without systemd :)

[–] Specter@piefed.social 0 points 1 day ago* (last edited 1 day ago)

I’m aware, I just don’t care enough about this particular beef.

Systems works well for me, and in order to get my configuration up to what it is today on NixOS (what I need it to be) I’d have to install multiple proprietary/non-free software/drivers on Guix anyway.

In a roundabout way I’d end up in the same spot.