this post was submitted on 22 Oct 2024
222 points (100.0% liked)

Linux

5184 readers
100 users here now

A community for everything relating to the linux operating system

Also check out [email protected]

Original icon base courtesy of [email protected] and The GIMP

founded 1 year ago
MODERATORS
top 40 comments
sorted by: hot top controversial new old
[–] [email protected] 107 points 2 weeks ago (1 children)

So he is like the rest of us

[–] [email protected] 22 points 2 weeks ago

Who would've thought

[–] [email protected] 49 points 2 weeks ago (6 children)

He's not the only one. Laptops especially seem to crash regularily nowadays, regardless the OS.

I'd like to see hardware classified by boringness and thus stability.

[–] [email protected] 16 points 2 weeks ago

That’s not what this is about. He’s complaining about hardware developers putting more work on kernel developers by making them patch all the CPU vulnerabilities that are introduced by trying to increase performance.

[–] [email protected] 13 points 2 weeks ago (1 children)

I've never had my laptop crash unless I was playing STALKER, GAMMA. What makes your laptop crash? I'm not doubting you, I'm just curious.

[–] [email protected] 22 points 2 weeks ago (3 children)

Waking up from sleep mode mostly.

[–] [email protected] 8 points 2 weeks ago

Every security feature ever made has basically started by absolutely dumping on S3 recovery. S3 recovery requires every device in the computer to give you a complete understanding of how to bring it up cold without engaging the boot flow. Sometimes devices don't do this because they are lazy, other times they don't do this for security reasons.

[–] [email protected] 7 points 2 weeks ago

Had that until I stopped using the nvidia GPU.

[–] [email protected] 5 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

I have that too! It started after an update at the beginning of this month. It seems to be a new bug that I cant reliably replicate. Do you have an AMD cpu/gpu?

[–] [email protected] 4 points 2 weeks ago* (last edited 2 weeks ago)

Not op, I have AMD Ryzen 7, but I haven't had the issue. I have all Windows bloatware un-installed or disabled, though.

Edit: I had one issue (one time, so I forgot about it), but I think it was a user error (me). I had to uninstall Linux because I either didn't update Windows or Linux (I think it was Linux), and their security systems were in conflict. Windows wouldn't even start until I used the BIOS to uninstall Linux. I had a backup, but a lost of little bit of data because I couldn't figure out how to make a new one. I reinstalled the updated version, and I didn't have any more issues.

[–] [email protected] 4 points 2 weeks ago

I recently got a Minisforum V3 and put arch on it.

Not only has it never crashed so far, but sleep and waking up worked out of the box, which was a huge surprise to me.

[–] [email protected] 4 points 2 weeks ago

I've definitely moved back to desktops. Still have my laptops but I use them in limited cases.

[–] [email protected] 3 points 2 weeks ago

Not the kinds of bugs he is talking about. This is about spectre mitigations.

[–] [email protected] 2 points 2 weeks ago (1 children)

Not trying to shill for Apple or anything, but I have found MacBooks (excluding the 2015 MacBook, and the 2016-2020 Air and Pro models) to be extremely stable and reliable, especially since they use their custom ARM CPU/SOCs. It reminds me of the good old PowerPC days, these machines were also reliable, basically unbreakable like a tank. In build quality, hardware and software. With the ARM transition, Apple really appears to have brought back the glory days of computing (unfortunately not in terms of upgradability and repairability, but at least in quality, stability and reliability).

I'm even more excited for the continiously improving Linux support on these devices - thanks to the amazing Asahi Linux ([email protected]) project. Also consider following them on Mastodon: @[email protected]

[–] [email protected] 3 points 2 weeks ago (1 children)

I will say I've never ever even once had an issue with my M1 pro 16", can't say that about any other laptop I've owned (be it battery swelling, software bugs, or "issues" one learns to live with like sleep mode causing boot crashes or sleep mode draining battery %). Kinda amazing in hindsight.

[–] [email protected] 3 points 2 weeks ago

I will say I’ve never ever even once had an issue with my M1 pro 16",

Same for my M1 Pro 14", the only issue I have is that the macOS version of Firefox just absolutely obliterates my battery, I mostly use Safari now, because it's much better optimized. That's really quite unfortunate, but it's not Apple's fault, and I don't see any hope for this, unless Mozilla decides to continue development of the Rust-based Servo browser engine, and eventually Firefox may switch away from the antiquated and incredibly inefficient Gecko code.

[–] [email protected] 42 points 2 weeks ago (1 children)

Hardware people sounds like a euphemism for protogen.

[–] [email protected] 36 points 2 weeks ago (2 children)
[–] [email protected] 1 points 2 weeks ago

Noo don't eat the RAM! I still need it for Blendeeer!

[–] [email protected] 13 points 2 weeks ago (3 children)

Could someone please explain to a non-tech expert?

[–] [email protected] 92 points 2 weeks ago (2 children)

In the last 10 years there has been a seemingly noteworthy uptick in hardware bugs in both intel and amd CPUs. Security researchers find and figure out potential attack vectors that rely on these bugs (ex. Specter/Meltdown). Then operating systems have to put workarounds in their kernel code to ensure that these hypothetical attack vectors are accounted for, at the cost of performance and more complicated code.

Linus is saying how annoyed he is with all this extra work they have to do, resulting in worse performance, all to plug vulnerabilities that we've never actually seen any real attackers use. He's saying instead we should just write the code how it should be, and if the hardware is insecure, let it be the hardware company's problem when customers don't use the hardware.

The problem is, customers will continue to use the hardware and companies who need a secure OS (all of them) will opt to not use Linux if it doesn't plug these holes.

[–] [email protected] 3 points 2 weeks ago

Plus a lot of these bugs don't get fixed, because they exist to allow the processors to "look ahead" for improved performance, at least on unmitigated benchmark tests.

[–] [email protected] 2 points 2 weeks ago

we should just write the code how it should be

Notably, that's not what he says. He didn't say in general. He said "for once, [after this already long discussion], let's push back here". (Literally "this time we push back")

who need a secure OS (all of them) will opt to not use Linux if it doesn’t plug these holes

I'm not so sure about that. He's making a fair assessment. These are very intricate attack vectors. Security assessment is risk assessment either way. Whether you're weighing a significant performance loss against low risk potentially high impact attack vectors or assess the risk directly doesn't make that much of a difference.

These are so intricate and unlikely to occur, with other firmware patches in line, or alternative hardware, that there's alternative options and acceptable risk.

[–] [email protected] 7 points 2 weeks ago

This is about Spectre, not about buggy hardware implementations.

Spectre is a fundamental flaw in speculative execution that means it can leak information, so it's a security vulnerability. Apparently Intel has been imposing draconian requirements on software to work around the issue rather than fixing it in hardware, which is obviously what they should do, but is not at all trivial.

[–] [email protected] -4 points 2 weeks ago (1 children)

hardware is like your computer, stuff like the cpu and ram. software is like the programs on that computer. linus torvalds makes a program that has to deal with the details of the computer (the linux kernel). as such, they have to work around problems in the hardware.

[–] [email protected] 8 points 2 weeks ago (1 children)

Thanks for the unappreciated ELI2

[–] [email protected] 4 points 2 weeks ago (1 children)
[–] [email protected] 4 points 2 weeks ago (1 children)

I'm a graybeard software engineer with 30+ years of experience.

I appreciated your explanation.

[–] [email protected] 3 points 2 weeks ago

Me too; it's BECAUSE I'm so old that I appreciate a general rooting what this is all about.

[–] [email protected] 5 points 2 weeks ago

I believe he was also worried people developing RISCV would make similar mistakes which would slow down adoption.