I hope that Linux continues to improve as a viable solution for average nontechnical users. The level of evil that's being pushed by mainstream for-profit software vendors is becoming outrageous.
As if most linux users who enable bluetooth want it to connect slowly and not work.
Being a bit hyperbolic intentionally but the point still stands
Windows has its own share of idiosyncrasies. You're just used to them. Bluetooth hardware is terrible, often proprietary and vendors write drivers only for Windows and macOS. What is Linux supposed to do about that?
EDIT: By the way, JustWorks and FastConnect are the official names of two Bluetooth connection techniques. The name is stupid because that's what the marketing people decided to call it, Linux is being consistent so you know what's going on when they're active, and I assume they have their downsides.
> Windows has its own share of idiosyncrasies.
Using all 3 main OSes frequently (Windows the least) I think this is the key point I've noticed. There's tons of frustrations on each of them. But at least for me, the reason why I like Linux so much is that I am far more likely to be able to fix things and move on. With Windows and OSX a fix usually involves some super hacky method that comes with costs, often invisibly so.It reminds me of an argument I had with a friend. I was saying <FAANG Company> should add an option to change some (very minor) attributes. My ask was literally about text size and location. He just came back and said that I like to fiddle with things and am out of touch because most people want things to "just work." He's not wrong, I like to fiddle. But the problem was that something was broken. Things weren't "just working". I was asking for that feature because the options were "clicking 3 buttons worth of fiddling" and "not using the product." If it is broken it is broken ¯\_(ツ)_/¯. If people are willing to fiddle to repair, great! They'll continue using the product. People that won't? Well it's broken so they weren't going to anyways. At least with the capacity for fiddling you maintain some.
These days, I find myself having fewer problems on Linux than either Windows or OSX. I expect most people to be surprised by that comment because I am too. A decade ago it was the exact opposite situation. But things change.
> The name is stupid
"2 hard things in Computer Science" but it isn't a off-by-one error! Though these names are just objectively stupid and confusing. At least an incomprehensible name wouldn't be misleading.I think the issue might be something else and that these names are just not great names. Personally I think "Just Works" is a terrible name and I don't understand how something so non-descriptive and confusing was allowed... but that's a different conversation... (2 jokes in CS?)
A little note on "Just Works". It probably doesn't matter for your use case but understanding that
https://stackoverflow.com/questions/42862560/should-one-create-a-bond-with-a-bluetooth-le-device/42916081#42916081
https://www.cve.news/cve-2024-53144/
I fight for the average user for respect of privacy and security, because, go figure, the average user only knows what there is a browser or an app, and they can logon and use it.
They have no clue of what is really going on.
So how we fix this? Give the average user the power. And show them what is going on and what are the options.
GNU/Linux desktop is not an alternative to Windows or mac. It is the only one who respects you.
If should be the only option you learn in school and learn about open source.
Myself I’ve moved away from this. Now, I frame it all as just people with the same fundamental nature, that I understand through little rules. Like ‘In the absence of a better more personal and mutually rewarding relationship we end up commoditizing each other which becomes more and more exploitative over time’. Or ‘We choose comfortable, pandering stories that make us feel better about ourselves, avoid situations to better understand others if they challenge our aspirational truths’.
(I only game on the weekends so I just cable swap, because my KVM is Mac <--> Gaming PC/SER8.)
Hypocrite because my daily driver is a uATX where I mostly just browser the internet and watch movies.
Everything is mostly fine on Linux, minus things like display drivers (pick the wrong nvidia driver and you’ll have crashes), power management (honestly I just use a remote switch to turn off my displays), and random stuff like my gnome classic shell will nearly always crash the moment I try to resume working after a few hours (just kicks me back to the login screen).
But sometimes I go back to windows and I am taken aback as the sheer completeness of the user experience.
Also Linux always hangs hard if I run it out of ram. Windows never does that.
Not going back anytime soon either way.
disable swap. Programs will crash instead, which may be more useful.
Anything what would request memory would just outright die, including even the most basic services.
Source: actually had a system without swap what would just die running `dnf update`. Or quietly die in a week or so if left unattended.
A guy with a decade old 64Gb SSD as the only drive in the system?
> and makes everything slow while doing it
It was so when the OS was on a HDD. Nowadays it's a PCIe device with 1 million IOPS.
And five years ago fans of some fruit company run around singing praises on how good their brand new laptops worked with a mere 8Gb of RAM.
Even if it was some sort of safety-related process that had to keep running no matter what, I would probably try to define/control the memory usage better so it wouldn't unexpectedly run orders of magnitude slower.
I use a program called earlyoom. It will monitor RAM and if you cross a level of utilization (default 95%?) it will kill the worst offenders before the system becomes unresponsive. You can layer on sophistication like protecting certain programs or preferring killing others. I find it invaluable when I am doing data science work and do something stupid which explodes in memory. Annoying that something was killed, but usually better than hosing the entire system -if it crossed 95% it was almost certainly going to hit 100%.
For my purposes it works perfectly - only the Python process will be killed, my IDE or notebook will survive.
You have to set swappiness to something like 1 or maybe 10, reduce cache pressure to like 50ish and set dirty ratios/bytes to something reasonable (say around 1GB, half of that for background).
If you keep defaults the system will have too much in caches and they may not be able to flush under memory and swap pressure => hang.
It’s actually amazing you need to tweak any of it to get sane behavior. Other OSes do a much better job at good defaults.
> It’s actually amazing you need to tweak any of it to get sane behavior.
I think this is because for the most part people aren't running out of memory and swap. Makes sense for devs, but devs also usually have more memory (and consequently more swap too). Often an easier solution is just adding more swap or buying more RAM. I mean if you're running out of swap and RAM then you're problem is fundamentally related to trying to do things your system isn't capable of. Though, that doesn't mean it shouldn't fail more gracefully... > I don’t game, I try but idk just feels like work.
I'm surprised by this. Valve has really made this easy these days. I switched to EndervourOS a few years back and things, for the most part, just works. 2-3 years ago the biggest hurdle was changing Proton version and 90% of the time I could play a game. For the last year (including after a reinstall and having never touched Steam settings) the only problems I've had are post an update and solved by restarting the computer. > pick the wrong nvidia driver and you’ll have crashes
Same thing here. The only issue I can think of in the last few years was an update where a rollback solved it. The problem was only because Endeavour (Arch based) uses beta nvidia drivers AND the newest kernels. Was a really easy fix. Just two commands to roll back kernel and driver. > Also Linux always hangs hard if I run it out of ram. Windows never does that.
This sounds like there might be a swap space allocation issue. Did you manually set swap or just go with the default configuration? If the OS runs out of RAM and swap (there's overcommit_memory but you probably don't want to enable it[0]) then yeah, you'll run into trouble. Not sure how Windows is handling that but there's only so much that can be done here. Luckily you can always add more swap space, if you don't want to buy more RAM. But things should never crash just because you ran out of RAM (there are exceptions, like a single program using all the RAM). > But sometimes I go back to windows and I am taken aback as the sheer completeness of the user experience.
You might like KDE[1]. It has a much more Windows like feel. Or Cutefish[2] for that OSX feel. It is pretty simple to make a switch (given you're comfortable with software I assume calling a few lines from the CLI doesn't scare you). Just some food for though. Personally I hate Gnome. Ugly as hell and unintuitive. I'd rather go headless than use Gnome.[0] https://serverfault.com/questions/606185/how-does-vm-overcom...
Linux is just much easier to use than it was a decade ago. Much simpler than ever 5 years ago.
A decade ago I'd have to fret over updating a nvidia driver and wonder if I'm going to spend a few hours or more recovering my display. God, there were so many pains. They helped me learn a lot and helped me gain mastery, but that's not for everyone.
But now, projects like SteamOS, System76, EndeavourOS, Manjaro, PopOS, and others have really moved the space in usability. Things have just changed. There's more effort than ever being put into linux and with that comes a lot of people willing to put effort into design. I think it is easy to lose sight of design when resources are scarce, but it is also important for drawing people into the cause.
Now the biggest problem of getting people to switch is actually with the nerdy/techy friends. They have heard too much about how linux is difficult and all that stuff. They are judging by the state of where things were than where things are now. Whereas for the most part a normal person switching to linux will have a similar experience as if they were switching from Windows to Mac or vise versa. There's pain points and a lot of "why is this here and not there" stuff, but things are very doable. But this initial learning curve can also put many people off (just like switching between Windows and Mac or Android and iPhone). But it is harder to make that transition when you have confirmation bias on your side.
Windows has changed too, their bad practices are increasing and the public perception is suffering by that.
But with the end of life for windows 10 in October, I switched back to Linux and I'm quite happy.
I'm running Manjaro with Xfce on my 4 year old LG Gram and it's really snappy while only using 900MB idle memory.
Do any other companies do the same?
Then there are more bespoke vendors that cater specifically to Linux. System76 is probably the most well known, but there are many others.
I'm speaking mainly for laptops/desktops. For servers it's always been you just put whatever on.
Linux gets the most time on servers and containers but the desktop base continues to grow, so expect most problems to be there (bluetooth, wifi, etc.). Accessibility is getting much better.
There could be incentives for hobbyists and off-hours professionals to contribute to it for fun. However, there are huge missing gaps of usability for the wider population. Windows, macOS, iOS and Android guarantees good support for internationalized, proprietary-first, out-of-the box working OSes which disappear under apps.
Making Linux popular means commonizing things. It requires finding economic incentives to people to maintain unwanted parts not for fun but for money. It'll bring all the things that make the technical people avoid. It has to drive zealots and strong open-source people away. It happened with Android, it will happen to Linux, if somebody finds a way to monetize it for the consumer market.
Ultimately, I don't believe we can solve a socioeconomic problem surfacing on technical devices with technical solutions. Whatever fight against big tech has to be won on the streets, parliaments and courtrooms.
Underrated point.
Most Linux distros have historically catered to an ecosystem of open source software with the distro repository model, and cross-distro software distribution is probably the biggest papercut still remaining with Linux today.
Thank goodness things are so much better these days with Electron, Steam, Docker, FlatPak and WINE. But there are still gaps that need filling.
The main problem is that Windows comes on laptops.
So how can we fight this? It might be hard to make this illegal as also Apple creates hardware and put's the software on it.
So the only way is to teach people about their options.
Personally I have found Linux to be ready for (some) desktops (including mine and several friends) since around 2005 and I have even worked for a company that mandated Linux for everyone who couldn't document a need for Windows only software.
The thing that stuck me about windows (windows 11) was how slow the right mouse button click feels. On the main screen, between right clicking and seeing the modal pop up, there is a ~150-200 ms delay that wasn't there on Windows XP and Windows 7. Those were the last major version of Windows I used as my daily drivers.
In windows 11, I was also annoyed by all the bloat on my home screen that I had to turn off manually, like the news feed or the weather or the stock market tracker. Oh -- and here is a good one -- my system clock resets every time I restart. I easily spent 2-3 hours trying to figure out why, and I eventually I gave up. Yes, there is a setting for "synchronize time automatically", but it doesn't work for me. Every time I log into windows, I have to go into the clock settings and manually force a resync with the correct time zone. To me this is just wild.
I transitioned to using Linux full time around 2018-ish, when I stopped playing MMOs. I still keep a version of Windows on my PC, but single-player gaming is a first-class citizen on Linux now, so I haven't logged into windows for some time.
Windows sets the hardware clock to local time.
Every time one or the other updates the clock, it's now in the wrong format for the other OS. The fix is to tell Linux to use local time. There are no side effects as far as I can tell
Using local time for the RTC theoretically makes it simpler to schedule wakeups at user friendly times, but that seems less impactful.
There are people that spend less time on a divorce and its aftermath. Maybe I'm jaded, but use whatever makes you happy, fulfilled and productive. The hand-wringing post facto justifications, which include Star Wars references to "freedom", are maybe a little tto much, don't you think?
Back in university RMS came to a neighbor uni in Stockholm for a traditional lecture about software freedoms etc. I think everyone thought he was a bit crazy or idealistic (I guess most still do). But the warnings of how you weren't going to own anything, that you have to ask permission, that your devices can be disabled etc, that sounded like fiction at the time. But looking back to that era (2011 or so), it slowly did change for the worse exactly like he warned.
While a lot of the early internet idealisms have fizzled out, I think today those ideas and passions were much more important than we thought. For instance, I usually say that if the web was invented today, browsers would not be approved by the app stores. We take some things for granted, and a lot of those things came from a different era, arising out of preconditions that largely no longer exist.
The bad is that Apple is just like Windows, just wants to look better. It is not.
Better than Windows? Ok, a little better yes.
[1] https://www.phoronix.com/news/libinput-Lua-Plugin-System
If you think Windows is bad for the world, stop driving eyeballs to their same strategies in the f/oss world as well.
There is a good progress with the likes of Lenovo (who for decades refused to refund Windows tax) selling computers with Linux pre-installed.
If you want gaming on Linux, get an AMD GPU.
SV_BubbleTime•2h ago
If I had control to wipe all machines as start over today, the SMB I work for would have to strongly consider all machines on Linux.
What is it our users do? Word, Excel, PowerPoint, browsers. So right off the bat, I’ve either shuttered the idea, or need to commit my users to be software social pariahs whenever we need to work with another company.
I suggest the battle isn’t the OS. But, rather Microsoft Office.
zdw•2h ago
This is also why they fought so hard against the XML standardization of docs formats, and still to this day docs created by their own apps don't even validate against the schemas they created.
globalnode•2h ago
adamors•2h ago
A4ET8a8uTh0_v2•2h ago
mvdtnz•18m ago
A4ET8a8uTh0_v2•13m ago
If you are thinking of permanently online games that effectively put malware on your system, I am ok with that not being solved ( but even for those there are ways to go around those restrictions -- which should not be surprise given the nature of cat and mouse game ).
bawolff•2h ago
I'm sure there are users with specialized needs who need something more complex, but i dont think microsoft office is quite the moat it used to be.
ejiblabahaba•1h ago
bawolff•53m ago
n3storm•2h ago
SoftTalker•2h ago
bigstrat2003•1h ago
SoftTalker•2h ago
roscas•1h ago
The same situation is for email. Who needs Outlook? Nobody! You can do almost everything with Thunderbird. So does Outlook have some "special" things? Maybe, never used it!
I even had my email on clawsmail and it was amazing.
BrenBarn•2h ago
jamiek88•2h ago
Plus I dispute that libreoffice has even close to 90% of what excel can do.
roscas•2h ago
Let's just compare what people do when they need a tool like Excel. That's when the 90 or maybe more % of people will do. That is what I do. Everything I do in Excel can be done on LibreCalc.
So it is true that LibreCalc can replace 90% or more, because not everybody needs those advanced topics.
Same for the other LibreOffice apps, Writer is good for almost everybody. As LibreDraw and others.
bee_rider•2m ago
rahkiin•2h ago
roscas•1h ago
Few days ago wife opened an excel file on the browser and something was right away wrong, she noticed, can't remember what it was. Had to download and execute local.