It’s probably countered by the “year of the Linux desktop” claims. Keeps it in a limbo.
It’s the first time I hear systemd or wayland were spelling the death of the linux desktop (not even gonna mention gnome, it’s a choice).
There are controversies around these two, some extremely valid, some a bit over the top, but both do work adequately for the vast majority of common use cases. I’d even argue that systemd (the init process) is better as far as being user friendly. And I say “user”, not “poweruser” nor “sysadmin”. And wayland is an opportunity to clear some long-lasting backward stuff, and even though it is possible to find issue today, for regular (and new) users, it has no bearing on the usability of their system.
All is better than the shit MS is pulling, from mass surveilance on their “business” apps to making an OS with ads included that you have to spent hours to make it useful.
While Linux has many flavors that just works for 80% of the people that dont have super specific use cases.
I don’t quite get why massive Gnome changes would imply a death of Desktop Linux. There are so many great alternatives to it. It’s been many years that Gnome has been considered bad by many, and that many have used alternatives. I just think it’s positive that Gnome continue to get worse, because like that more distros may default to better alternatives to begin with.
Hot take: the more Gnome shoots itself in the foot, the better for Linux.
Gnome is awesome
I never understood it either. I was a user of Gnome until Gnome 3 showed up and I decided to nope out of there. It was a simple process of trying few different DE’s and I have settled on KDE and Cinnamon for when I want that old timey Gnome feeling.
It wasn’t hard to switch at all.
Yeah, really baffling direction. I ended up trying a version on gnome 3 on a Debian distro when I had a new job. It ran very slowly. Super weird. It used to be super smooth.
I hated Gnome 3 when it came out, but it got better over the years. If you want to use it as a traditional KDE-style DE, you’re going to fight it and have a bad time. If you use it as intended, and that works for you, it’s good.
Interesting. I think they might have been my problem, I was just trying to use it tradicionally. I wonder how it’s different nowadays.
Kde is not traditional. It looks like disgusting microshit garbage. Same as cinnamon.
I don’t know why people would want to sue desktop environments that like that like garbage product made by billy gats
It was somewhat of a special situation back when Gnome 3 dropped. Ubuntu & flavours of it was still regarded as the go-to distro by many and KDE still had a somewhat damaged reputation due to KDE 3 (even though 4 was already available, however that also had some issues). Many environments we know today didn’t exist yet, so lots of people were rather distraught when Gnome broke with a lot of concepts and dropped what arguably was a horrendous DE.
Many of our current DEs are Gnome 2 or 3 forks (MATE, Cinnamon, Budgie, and back then also Unity), made exactly because of this whole debacle.
Yeah, it’s been interesting seeing all the alternatives popping up. I think I’ve met a lot of people who really liked MATE.
I’ve mostly kept using XFCE. But before I had i3 only.
In my experience it was KDE 3 that was praised, while 4 was shunned for being too bloated, and trying to be too much like Windows Aero
I like systemd
Systemdeez nuts
Most people do
There are places I wouldn’t use it but for most systems it makes things simpler
OOL: what’s the beef with systemd?
I’ll just copy my comment from the other day.
Some people think it handles too many low-level systems. It’s a valid concern because if systemd itself were to become compromised (like Xz Utils was) or a serious bug was introduced, all of the userland processes would be affected. People who are stuck in the 90s and think that the Unix philosophy is still relevant will also point out that it’s a needlessly complex software suite and we should all go back to writing initscripts in bash. The truth is, it’s complex because it needs to solve a complex problem.
Red Hat, the owner of systemd, has also had its fair share of controversies. It’s a company that many distrust.
Ultimately, those whose opinion mattered the most decided that systemd’s benefits outweigh the risks and drawbacks. Debian held a vote to determine the project’s future regarding init systems. Arch Linux replaced initscripts because systemd was simply better, and replicating and maintaining its features (like starting services once their dependencies are running) with initscripts would’ve been unjustifiably complicated.
it does too many things, thus going against the unix philosopy of “do one thing and do it well”
Systemd does one thing, it manages services, and does so reliably, without messing around with spagettified shell scripts, with a fuckload of options, and all of that easily is configurable by dropping in files without editing stuff that arrived from the package manager. Seems pretti “do one (complex) thing and do it well”
If you add other things built around it, it can do more. For example, if you install systemd-nspawn it can start and stop containers like it starts and stops services.
Other things that you think of as systemd are entirely separate things (like systemd-networkd) that are just built around systemd. You don’t have to use them if you don’t like.
On the other hand, you know what does not follow the Unix philosophy? The Xserver, which manages screens, graphic acceleration, input devices, printers, remoting, etc. And it doesn’t even do it well
I need systemd-run to start a process in my startup scripts (that are a systemd oneshot service) so that the process won’t get killed when the startup scripts have run (subshells, nohup, … still keep the same systemd cgroup so get killed with the tree).
I need journalctl to get output from services, so basically every system and user process I didn’t explicitly start in a console. I don’t even know how to get info from systemd stuff in any other way, as they don’t have alternate logging facilities to my knowledge.
Systemd also ate my fstab at some point and translates mounts into services, but I haven’t really looked into that.I think there were a few more components packed into this systemd core. Without the init system/servixe manager, logging, … you can’t really use systemd stuff including parts of that core.
Past that, things like networkd, resolved, … are very modular in my experience.
I can imagine running resolved under a different init system, and I have migrated both to and from resolved on systemd systems. They do still change old paradigms, resolved replaces a file not a service for example, but they do provide adequate translation layers and backwards compatibility in most cases (Though the mounts for example has lead to me getting 5 “run daemon-reload” info messages on every execution of mount before). An issue here might be when something only supports the new systemd interface not the old stuff, say a program directly calling resolved instead of looking at resolv.conf. But I haven’t seen that, and most of those interfaces seem decent enough to implement into systemd-alternatives.Maybe someome who actually tried cherrypicking some systemd stuff into their system can provide some more experience?
Fstabs gets converted into temporary unit files every time systems reloads config files (reboot or daemon-reload) so you can just keep using it like you always did. Actually it’s the systemd suggested way to manage mountpoints unless you need something advanced that fstabs can’t do.
My problem is 1) how do I revert to dedicated mount, and 2) mainly that I want to edit fstab, and mount without having to reload systemd. Dedicated mount doesn’t need a reload, it simply pulls config from fstab at time of call.
I also don’t see why you would ever want to reload service files due to editing fstab, it seems dumb in both directions. Those two systems should just be decoupled.
See also: the Linux Kernel
Shouldn’t init systems control services and processes?
There is no such philosophy and it was never practiced.
It’s definitely a thing.
Unix is where the model of linux commands originates, and those commands absolutely embody the unix philosophy.
Systemd is a bit like busybox in that many formerly standalone comands turn into symlinks to systemctl.
Take a look at shutdown for example.
It’s impressive how much hatred linux gets, by people who generally try to say it’s insignificant and unnoticeable.
But eh, better them say that it’s going to die, than with Windows where everyone agreed to say that it was dead after 7 and stopped having any expectations.
It’s even more impressive how much hate Linux gets from people that love it
We call that “Star Wars Syndrome.”
Not only that but also while those changes were mostly received well in the end you can still use a no systemd, x11, MATE distro if you’re genuinely unhappy with them
ayo this the bigger than sign
Death is just a feeling.
Love, too.
woah michael jackson is looking kinda goofy these days
and who was saying those things were going to kill the linux desktop? i only ever saw anyone talking about how that stuff would mean the year of the linux desktop
Linux is made of death. It is The Death.
A loud part of the community don’t like change or having to learn new things. Well regurgitate negative points from 15 years ago not based on their own exspirences.Have issues with small projects popping up all over due to it being open source. Weird for Linux users I know almost as if you don’t have to use anything you don’t want to in your own system.
What’s with the crackhead? I would think a picture of a zombie (or SOME member of the undead, anyway) would be a better fit.
That’s Michael Jackson from the Thriller music video as a zombie.
Ah, ok. He was a middle-aged elf by the time I ever saw him. Also the lack of necrosis doesn’t exactly scream “zombie”.
Yeah he was supposed to still look good for the ladies…