this post was submitted on 11 Apr 2024
162 points (95.0% liked)

Linux

45595 readers
738 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 5 years ago
MODERATORS
 

I'm curious how software can be created and evolve over time. I'm afraid that at some point, we'll realize there are issues with the software we're using that can only be remedied by massive changes or a complete rewrite.

Are there any instances of this happening? Where something is designed with a flaw that doesn't get realized until much later, necessitating scrapping the whole thing and starting from scratch?

top 50 comments
sorted by: hot top controversial new old
[–] bjoern_tantau@swg-empire.de 106 points 2 months ago* (last edited 2 months ago) (3 children)

Happens all the time on Linux. The current instance would be the shift from X11 to Wayland.

The first thing I noticed was when the audio system switched from OSS to ALSA.

[–] Max_P@lemmy.max-p.me 71 points 2 months ago (1 children)

And then ALSA to all those barely functional audio daemons to PulseAudio, and then again to PipeWire. That sure one took a few tries to figure out right.

[–] bjoern_tantau@swg-empire.de 40 points 2 months ago (1 children)

And the strangest thing about that is that neither PulseAudio nor Pipewire are replacing anything. ALSA and PulseAudio are still there while I handle my audio through Pipewire.

[–] angel@iusearchlinux.fyi 28 points 2 months ago* (last edited 2 months ago) (2 children)

How is PulseAudio still there? I mean, sure the protocol is still there, but it’s handled by pipewire-pulse on most systems nowadays ~~(KDE specifically requires PipeWire)~~.

Also, PulseAudio was never designed to replace ALSA, it’s sitting on top of ALSA to abstract some complexity from the programs, that would arise if they were to use ALSA directly.

load more comments (2 replies)
load more comments (2 replies)
[–] Strit@lemmy.linuxuserspace.show 69 points 2 months ago (6 children)

there are issues with the software we’re using that can only be remedied by massive changes or a complete rewrite.

I think this was the main reason for the Wayland project. So many issues with Xorg that it made more sense to start over, instead of trying to fix it in Xorg.

load more comments (6 replies)
[–] lil@lemy.lol 52 points 2 months ago (6 children)

There is some Rust code that needs to be rewritten in C.

[–] DmMacniel@feddit.de 39 points 2 months ago* (last edited 2 months ago) (1 children)
[–] possiblylinux127@lemmy.zip 26 points 2 months ago (1 children)
[–] DmMacniel@feddit.de 12 points 2 months ago (1 children)

~~I feel tracked... Better strike this all through~~

load more comments (1 replies)
[–] Lodra@programming.dev 19 points 2 months ago (7 children)

Strange. I’m not exactly keeping track. But isn’t the current going in just the opposite direction? Seems like tons of utilities are being rewritten in Rust to avoid memory safety bugs

load more comments (7 replies)
load more comments (4 replies)
[–] nycki@lemmy.world 49 points 2 months ago* (last edited 2 months ago) (1 children)

Starting anything from scratch is a huge risk these days. At best you'll have something like the python 2 -> 3 ~~rewrite~~ overhaul (leaving scraps of legacy code all over the place), at worst you'll have something like gnome/kde (where the community schisms rather than adopting a new standard). I would say that most of the time, there are only two ways to get a new standard to reach mass adoption.

  1. Retrofit everything. Extend old APIs where possible. Build your new layer on top of https, or javascript, or ascii, or something else that already has widespread adoption. Make a clear upgrade path for old users, but maintain compatibility for as long as possible.

  2. Buy 99% of the market and declare yourself king (cough cough chromium).

[–] zaphod@sopuli.xyz 18 points 2 months ago (1 children)

Python 3 wasn't a rewrite, it just broke compatibility with Python 2.

load more comments (1 replies)
[–] biribiri11@lemmy.ml 45 points 2 months ago (4 children)

The entire thing. It needs to be completely rewritten in rust, complete with unit tests and Miri in CI, and converted to a high performance microkernel. Everything evolves into a crab /s

load more comments (4 replies)
[–] LeFantome@programming.dev 39 points 2 months ago (2 children)

Linux does this all the time.

ALSA -> Pulse -> Pipewire

Xorg -> Wayland

GNOME 2 -> GNOME 3

Every window manager, compositor, and DE

GIMP 2 -> GIMP 3

SysV init -> SystemD

OpenSSL -> BoringSSL

Twenty different kinds of package manager

Many shifts in popular software

load more comments (2 replies)
[–] smileyhead@discuss.tchncs.de 39 points 2 months ago (4 children)

Maybe not exaclly Linux, sorry for that, but it was first thing that get to my mind.
Web browsers really should be rewritten, be more modular and easier to modify. Web was supposed to be bulletproof and work even if some features are not present, but all websites are now based on assumptions all browsers have 99% of Chromium features implemented and won't work in any browser written from scratch now.

[–] intrepid@lemmy.ca 32 points 2 months ago (4 children)

The same guys who create Chrome have stuffed the web standards with needlessly bloated fluff that makes it nearly impossible for anyone else to implement it. If alternative browsers have to be a thing again, we need a new standard, or at least the current standard with significantly large portions removed.

load more comments (4 replies)
[–] nasi_goreng@lemmy.zip 13 points 2 months ago

So, it's Servo?

https://servo.org/

It's also written in Rust.

load more comments (2 replies)
[–] limelight79@lemm.ee 35 points 2 months ago (3 children)

We haven't rewritten the firewall code lately, right? checks Oh, it looks like we have. Now it's nftables.

I learned ipfirewall, then ipchains, then iptables came along, and I was like, oh hell no, not again. At that point I found software to set up the firewall for me.

[–] catloaf@lemm.ee 11 points 2 months ago

Damn, you're old. iptables came out in 1998. That's what I learned in (and I still don't fully understand it).

load more comments (2 replies)
[–] MrAlternateTape@lemm.ee 30 points 2 months ago (2 children)

It's actually a classic programmer move to start over again. I've read the book "Clean Code" and it talks about a little bit.

Appereantly it would not be the first time that the new start turns into the same mess as the old codebase it's supposed to replace. While starting over can be tempting, refactoring is in my opinion better.

If you refactor a lot, you start thinking the same way about the new code you write. So any new code you write will probably be better and you'll be cleaning up the old code too. If you know you have to clean up the mess anyways, better do it right the first time ....

However it is not hard to imagine that some programming languages simply get too old and the application has to be rewritten in a new language to ensure continuity. So I think that happens sometimes.

[–] teawrecks@sopuli.xyz 16 points 2 months ago (7 children)

Yeah, this was something I recognized about myself in the first few years out of school. My brain always wanted to say "all of this is a mess, let's just delete it all and start from scratch" as though that was some kind of bold/smart move.

But I now understand that it's the mark of a talented engineer to see where we are as point A, where we want to be as point B, and be able to navigate from A to B before some deadline (and maybe you have points/deadlines C, D, E, etc.). The person who has that vision is who you want in charge.

Chesterton's Fence is the relevant analogy: "you should never destroy a fence until you understand why it's there in the first place."

load more comments (7 replies)
load more comments (1 replies)
[–] gnuhaut@lemmy.ml 30 points 2 months ago (11 children)

GUI toolkits like Qt and Gtk. I can't tell you how to do it better, but something is definitely wrong with the standard class hierarchy framework model these things adhere to. Someday someone will figure out a better way to write GUIs (or maybe that already exists and I'm unaware) and that new approach will take over eventually, and all the GUI toolkits will have to be scrapped or rewritten completely.

[–] lung@lemmy.world 16 points 2 months ago

Idk man, I've used a lot of UI toolkits, and I don't really see anything wrong with GTK (though they do basically rewrite it from scratch every few years it seems...)

The only thing that comes to mind is the React-ish world of UI systems, where model-view-controller patterns are more obvious to use. I.e. a concept of state where the UI automatically re-renders based on the data backing it

But generally, GTK is a joy, and imo the world of HTML has long been trying to catch up to it. It's only kinda recently that we got flexbox, and that was always how GTK layouts were. The tooling, design guidelines, and visual editors have been great for a long time

load more comments (10 replies)
[–] bloodfart@lemmy.ml 27 points 2 months ago (3 children)

lol that someone already said Wayland.

load more comments (3 replies)
[–] MonkderDritte@feddit.de 27 points 2 months ago* (last edited 2 months ago) (9 children)

Alsa > Pulseaudio > Pipewire

About 20 xdg-open alternatives (which is, btw, just a wrapper around gnome-open, exo-open, etc.)

My session scripts after a deep dive. Seriously, startxfce4 has workarounds from the 80ies and software rot affected formatting already.

Turnstile instead elogind (which is bound to systemd releases)

mingetty, because who uses a modem nowadays?

load more comments (9 replies)
[–] sunbeam60@lemmy.one 26 points 2 months ago (2 children)

Be careful what you wish for. I’ve been part of some rewrites that turned out worse than the original in every way. Not even code quality was improved.

load more comments (2 replies)
[–] Hector@lemmy.ca 21 points 2 months ago (1 children)

Some form of stable, modernized bluetooth stack would be nice. Every other bluetooth update breaks at least one of my devices.

load more comments (1 replies)
[–] Hawke@lemmy.world 16 points 2 months ago* (last edited 2 months ago) (1 children)

There are many instances like that. Systemd vs system V init, x vs Wayland, ed vs vim, Tex vs latex vs lyx vs context, OpenOffice vs libreoffice.

Usually someone identifies a problem or a new way of doing things… then a lot of people adapt and some people don’t. Sometimes the new improvement is worse, sometimes it inspires a revival of the old system for the better…

It’s almost never catastrophic for anyone involved.

[–] milicent_bystandr@lemm.ee 15 points 2 months ago (3 children)

Some of those are not rewrites but extensions/forks

load more comments (3 replies)
[–] nayminlwin@lemmy.ml 15 points 2 months ago (3 children)

There's already a lot of people rewriting stuff in Rust and Zig.

load more comments (3 replies)
[–] taladar@sh.itjust.works 15 points 2 months ago (28 children)

I would say the whole set of C based assumptions underlying most modern software, specifically errors being just an integer constant that is translated into a text so it has no details about the operation tried (who tried to do what to which object and why did that fail).

load more comments (28 replies)
[–] possiblylinux127@lemmy.zip 14 points 2 months ago (1 children)

Cough, wayland, cough (X is just old and wayland is better)

[–] milicent_bystandr@lemm.ee 42 points 2 months ago (4 children)

Alt text: Thomas Jefferson thought that every law and every constitution should be torn down and rewritten from scratch every nineteen years--which means X is overdue.

load more comments (4 replies)
[–] mlg@lemmy.world 11 points 2 months ago (3 children)

Not too relevant for desktop users but NFS.

No way people are actually setting it up with Kerberos Auth

load more comments (3 replies)
load more comments
view more: next ›