There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

FireWire400 ,
@FireWire400@lemmy.world avatar

I honestly donā€™t know how to think about this. On one hand, itā€™s pretty cool that more and more users are giving the finger to Microsoft and switch to Linux.

On the other hand, Linux systems are gonna become a bigger target for cyberattacks or malware. I realise that I, as a regular person who isnā€™t on dodgy porn sites all day, probably have nothing to fear but still, I like my Linux lightweight and if they have to slap some antivirus on thereā€¦ eh idk

massacre ,

Donā€™t fret! 95+% all servers on the internet run Linux so the attack vector has been there for ages. Follow best practices and your risk will remain low!

TheGrandNagus , (edited )

Unfortunately thereā€™s a lot more to it than that.

Youā€™re right that the ā€œback endā€ of Linux systems tend to be quite hardened.

Itā€™s the desktop environments that are a concern when it comes to security hardening, IMO. Almost all servers have no DE installed so itā€™s not something enterprise has cared about.

How much effort has been put into security on DEs? I honestly have no idea, but so far there hasnā€™t been an enormous pressure to security harden them.

Shit, look at:

  • X11. Itā€™s insecure by design, yet most distros still ship with it (understandably, since Wayland isnā€™t 100% yet).
  • packaged software runs as root during the whole installation period - this means that anything slipped into the install script will have full root privileges to do anything to your system. Flatpak does fix this, but normally-packaged software is still abundant.
  • any non-root program can change aliases in your bashrc or bash_aliases file. I.e. they can change ā€œapt installā€ to some other nefarious command, or to point to a dodgy software repository, so that next time the user types ā€œsudo apt install [XYZ]ā€, it downloads malware or does other nasty things.

Iā€™m absolutely clueless about this stuff and I can come up with those potential attack vectors in seconds. Imagine what a proficient hacker could do, or a hostile nation-state.

I definitely think improvements will have to be made in terms of security, and weā€™re no doubt going to hear more about malware in the coming years. But itā€™s not an insurmountable problem, IMO. Distros and DEs will just take time to adapt.

rottingleaf ,

X11. Itā€™s insecure by design, yet most distros still ship with it (understandably, since Wayland isnā€™t 100% yet).

This is a bit overhyped.

packaged software runs as root during the whole installation period - this means that anything slipped into the install script will have full root privileges to do anything to your system. Flatpak does fix this, but normally-packaged software is still abundant.

WTF? Things that run as root, do. Things that donā€™t, donā€™t. Obviously most things donā€™t.

any non-root program can change aliases in your bashrc or bash_aliases file. I.e. they can change ā€œapt installā€ to some other nefarious command, or to point to a dodgy software repository, so that next time the user types ā€œsudo apt install [XYZ]ā€, it downloads malware or does other nasty things.

For your own user, so what?

EDIT:

But itā€™s not an insurmountable problem, IMO. Distros and DEs will just take time to adapt.

Actually it is. One can make levels over levels of isolation, sandboxes and more sandboxes, but in the end conscious hygiene matters most.

TheGrandNagus , (edited )

This is a bit overhyped.

No, it isnā€™t. If anything itā€™s the opposite.

Under X11, any program of any kind can see the contents of another program.

Under X11, any program of any kind can see all your keypresses, whether the app is focussed, unfocused, minimised, on another virtual desktop. Anything.

Under X11, any program can inject keypresses into any other program.

Under X11, any program of any kind can access your clipboard.

And it doesnā€™t even take root privileges. Thatā€™s just the default.

The X11 system itself runs as root, though. And this opens the door for privilege escalation exploits.

Thatā€™s before we even consider the devs themselves saying that the complexity, decades of spaghetti code, and unfixable bugs make it virtually impossible to patch.

X11 is a security nightmare of epic proportions. An absolutely cataclysmically insecure system. And itā€™s one of the main reasons that X11 devs abandoned it for Wayland.

WTF? Things that run as root, do. Things that donā€™t, donā€™t. Obviously most things donā€™t.

I never said that things that donā€™t run as root run as root. That doesnā€™t make sense, itā€™s self contradictory.

What I said was that install scripts for repo packages always run as root. And therefore anything that makes its way into the script will be executed with root privileges. That is a risk.

For your own user, so what?

What do you mean, ā€œso whatā€?! A non-root program being able to highjack system commands and even gain root access isnā€™t ā€œso whatā€, itā€™s a glaring security hole.

Actually it is. One can make levels over levels of isolation, sandboxes and more sandboxes, but in the end conscious hygiene matters most.

Youā€™re right, but youā€™re taking my words there a little too literally there.

When I say the problems arenā€™t insurmountable I mean ā€œwith effort, a lot of these will be fixed and your system will be pretty secureā€, not ā€œone day Linux systems will literally be unhackable, and no exploit or security issue will ever be found again. Security problems will be a thing of the past.ā€

rottingleaf ,

Under X11, any program ā€¦

This would be the same as under Windows, no?

The X11 system itself runs as root, though. And this opens the door for privilege escalation exploits.

It usually does, but it doesnā€™t have to.

Thatā€™s before we even consider the devs themselves saying that the complexity, decades of spaghetti code, and unfixable bugs make it virtually impossible to patch.

And the new thing to replace that is still not good enough after 10 years or so.

I said that install scripts for repo packages always run as root. And therefore anything that makes its way into the script will be executed with root privileges. That is a risk.

Letā€™s please not extrapolate the problems of your distribution to all of them.

What do you mean, ā€œso whatā€?! A non-root program being able to highjack system commands and even gain root access isnā€™t ā€œso whatā€, itā€™s a glaring security hole.

Your user may set aliases for the shell of your user, and the program\script ran by your user can do that.

Itā€™s not a security hole at all. Itā€™s something you should be able to do for any normal use.

TheGrandNagus ,

This would be the same as under Windows, no?

In short, no not really for modern windows versions, in almost all cases.

Although I donā€™t find ā€œwell Windows does it so it must be alrightā€ to be a great argument anyway. When someone says ā€œtop notch securityā€, Windows isnā€™t the first thing that springs to my mind.

It usually does, but it doesnā€™t have to.

Hypothetically yes, but in every single distro out there that Iā€™ve seen no. And most people donā€™t build their own from scratch.

And the new thing to replace that is still not good enough after 10 years or so.

Not in all cases, no. There are fringe usecases still being worked on. Iā€™ve been using it since 2016 just fine, but my sister, who is reliant on screen readers, hasnā€™t been able to.

Like I said, things are being worked on. This is kind of derailing the conversation away from security, though. I was talking about security.

Letā€™s please not extrapolate the problems of your distribution to all of them.

No. It is all of them. Itā€™s a problem with all Debian-based distros, Fedora, SUSE, Arch, you name it. Installer scripts run with root privileges.

Your user may set aliases for the shell of your user, and the program\script ran by your user can do that.

Yesā€¦ then when you run sudo thinking youā€™re using whatever command, it can run something entirely different. How donā€™t you see that as a problem?

Itā€™s not a security hole at all.

WHAT?! Any program, without root privileges, being able to tamper with what commands do, and gain full root access to your system, ā€œis not a security hole at allā€??

So you download, say, a text editor. Except itā€™s been compromised (although you donā€™t know it). That program alters the sudo command by aliasing it to execute a curl command that encrypts your drive and shows a message that if you send ABC amount of bitcoin to XYZ wallet, then you get the decryption key.

You run sudo for any reason, e.g. to edit your fstab file, do a system update, install a package, anything, and you type your password at the prompt as usual. Unbeknownst to you, you didnā€™t actually just run sudo plus your intended command, you just ran that aforementioned curl script, and you handed it sudo privileges. Your SSD is encrypted, your data is gone.

In your mind, thatā€™s not a security hole? Thatā€™s intended behaviour? Any program should be able to do that?

I donā€™t really know what to say to that, other than I disagree wholeheartedly.

rottingleaf ,

Windows isnā€™t the first thing that springs to my mind.

We-ell, this thread kinda started with saying that weā€™ll see glaring security holes with the same desktop popularity as that of Windows.

Hypothetically yes, but in every single distro out there that Iā€™ve seen no. And most people donā€™t build their own from scratch.

Well, then it doesnā€™t require flatpaks and snaps to solve this huge problem, right?

You might have a path where only a certain user has ā€˜wā€™ rights, thatā€™s readable by everyone, and software is installed there.

You might use Nix or Guix, which are, while not traditional, still pretty normal package managers without things like bundling dependencies.

So NixOS and GuixSD would be such distributions. Admittedly Iā€™ve never used them, only Guix in another distribution.

Not in all cases, no. There are fringe usecases still being worked on. Iā€™ve been using it since 2016 just fine, but my sister, who is reliant on screen readers, hasnā€™t been able to.

Well, since youā€™ve mentioned accessibility, some of us have AuDHD, and while each person is different, for me specifically this means that I can set up CWM or FVWM for X11, but I just canā€™t set up Hikari for Wayland. That is, I had it kinda working, but the anxiety from setting up that and some terminal emulator with hipster XML config and DPI being wrong just made me say ā€œfsck thatā€ and go back. I could have tried Gnome with Wayland, but my X11 setup is more subjectively usable.

No. It is all of them. Itā€™s a problem with all Debian-based distros, Fedora, SUSE, Arch, you name it. Installer scripts run with root privileges.

OK, Iā€™m not sure, but I think OpenBSD and NetBSD donā€™t run any scripts contained inside packages. They are not Linux ofc.

Yesā€¦ then when you run sudo thinking youā€™re using whatever command, it can run something entirely different. How donā€™t you see that as a problem?

Yes, you can do that. You can set aliases which will look like whatever at all. How do you solve that ā€œproblemā€?

So you download, say, a text editor. Except itā€™s been compromised (although you donā€™t know it).

OK, Iā€™ll make a shortcut here and say that if you think this is a problem, the only real fundamentally sane way to solve it is to disallow privilege elevation, say, after single mode, and boot to that in case you need to do some maintenance.

In your mind, thatā€™s not a security hole? Thatā€™s intended behaviour? Any program should be able to do that?

I donā€™t really know what to say to that, other than I disagree wholeheartedly.

Any program that you run. Well, or one can forbid aliasing ā€˜sudoā€™ in the shell, of course. But you wonā€™t run out of things which can be aliased to something nasty. It will be the same as rm -rf / advice evolving to rm -rf /*

TheGrandNagus ,

We-ell, this thread kinda started with saying that weā€™ll see glaring security holes with the same desktop popularity as that of Windows.

Yeah, like windows did, for a long time, and from time to time still does.

Well, then it doesnā€™t require flatpaks and snaps to solve this huge problem, right?

It pretty much does, yes.

Well, since youā€™ve mentioned accessibility [ā€¦]

Ok. Not to do with security. Letā€™s not get sidetracked.

Ok Iā€™m not sure, but I think OpenBSD and NetBSD donā€™t run any scripts contained inside packages. They are not Linux ofc

Iā€™m not sure about the BSDs, but Iā€™m talking about Linux. And as it stands, the package installation step is a risky process in any distro Iā€™ve ever seen. You just have to rely that no mistake will ever be made by packagers, nothing will slip past them, and that they manually and thoroughly look through every installation process of every package (which they donā€™t).

Itā€™s an unnecessary risk that gets solved by Flatpak (plus a bunch of other security advantages)

Yes, you can do that. You can set aliases which will look like whatever at all. How do you solve that ā€œproblemā€?

I donā€™t know, Iā€™m not a security expert. But it is a problem, and a massive one.

rottingleaf ,

It pretty much does, yes.

Itā€™s an unnecessary risk that gets solved by Flatpak (plus a bunch of other security advantages)

ā€¦ Or Nix/Guix, or any per-user approach to package installation, or AppImages.

Anyway, Iā€™m not against them completely. For distributing some user applications, and maybe proprietary stuff, they are fine.

And as it stands, the package installation step is a risky process in any distro Iā€™ve ever seen. You just have to rely that no mistake will ever be made by packagers, nothing will slip past them, and that they manually and thoroughly look through every installation process of every package (which they donā€™t).

We-ell, in basic Unix-like terms you can just do a chroot while unpacking, check that no nasty places are being touched, and then rsync to root. I think some PMs already do just that.

I donā€™t know, Iā€™m not a security expert. But it is a problem, and a massive one.

This problem seems inherent to anything Turing-complete.

TheGrandNagus ,

Nix is not simple, and it always seems to fuck up. AppImages have zero security advantages, theyā€™re awful. It doesnā€™t even have sandboxing.

We-ell, in basic Unix-like terms you can just do a chroot while unpacking, check that no nasty places are being touched, and then rsync to root. I think some PMs already do just that.

Lmao. Not only would that not even be effective, but thatā€™s also a ludicrous suggestion for the average user to do for every app they install. What an absurd suggestion.

Why are you so against having a secure system?

rottingleaf ,

but thatā€™s also a ludicrous suggestion for the average user to do for every app they install

I dunno what youā€™re on, Iā€™m talking about the PM doing this.

Why are you so against having a secure system?

Iā€™m against believing in the concept of actually having a secure system.

TheGrandNagus ,

100% there will be more malware and scams as Linux grows. In fact, itā€™s happening already.

Just look at there being multiple instances of cryptowallet theft on Ubuntuā€™s app store by devs uploading fake copies of crypto wallet managers.

And thatā€™s before we even get onto DEs ā€“ and much of the desktop Linux stack in general ā€“ generally not being designed with security in mind, as itā€™s not been something theyā€™ve had to worry about.

We will see more malware, more scams. We will see glaring security problems that were allowed to stay in place for years be exploited. We will see infighting in the Linux community over all of this stuff.

It is the price we must pay for being an increasingly relevant platform.

With any luck, more users will mean more contributors, more financial support for devs, and of course better security as a result of that - you only need to look at how much KDE Plasma has improved with support from Valve, and how much work Gnome has been getting done after Germanyā€™s ā€œSovereign Tech Fundā€ contribution to see that even a little bit of support can go a long way.

rottingleaf ,

And thatā€™s before we even get onto DEs ā€“ and much of the desktop Linux stack in general ā€“ generally not being designed with security in mind, as itā€™s not been something theyā€™ve had to worry about.

Iā€™m not sure this is entirely correct. But thereā€™s truth here in the sense that things have been becoming more complex over time, so now an average desktop system has much more packages than 10 years ago, and supply chain vulnerabilities are a thing.

Now, using snap store, flathub and all that is just unhygienic.

We will see more malware, more scams. We will see glaring security problems that were allowed to stay in place for years be exploited. We will see infighting in the Linux community over all of this stuff.

Iā€™m certain most of the failures will be in the new shiny stuff, and thus most of the losses in that infighting too.

TheGrandNagus ,

Iā€™m not sure this is entirely correct

Why is that?

Now, using snap store, flathub and all that is just unhygienic.

What is this based on? What do you mean by ā€œunhygienicā€ anyway?

Flatpaks are more secure than system packages. Theyā€™re not installed with installation scripts that run as root (and can therefore do anything to your system if malicious code is slipped in.

Flatpaks also have sandboxing. Itā€™s not a perfect implementation mind you, but itā€™s better than zero sandboxing.

Snaps is a bit more complicated, but sandboxing works if you have a fistro that uses AppArmour, so basically Ubuntu and some derivatives. Although who else would use snaps anyway lol. Flatpak won that fight.

Iā€™m certain most of the failures will be in the new shiny stuff

I donā€™t know why youā€™d be certain of that. New stuff is generally designed from the ground up to be more secure.

Look at Flatpaks Vs repo packages.

Look at xdg-portals Vs 500 different implementations to do the same thing.

Look at the absolutely cataclysmic security catastrophe that is X11 compared to Wayland.

rottingleaf ,

Why is that?

Because a vulnerability in one DEā€™s file manager, for example, will have smaller impact because many people donā€™t use that DE.

Same with other things.

Also because thatā€™s something we still had to worry about.

Flatpaks are more secure than system packages. Theyā€™re not installed with installation scripts that run as root (and can therefore do anything to your system if malicious code is slipped in.

Not all package managers even run install scripts (from packages) at all.

Flatpaks may contain vulnerable versions of libraries bundles, IIRC. While the one from the normal package manager has been updated.

Flatpaks also have sandboxing. Itā€™s not a perfect implementation mind you, but itā€™s better than zero sandboxing.

I just donā€™t like the general direction of this. Running more and more complex and untrusted crap and solving that with more complexity.

I donā€™t know why youā€™d be certain of that. New stuff is generally designed from the ground up to be more secure.

More complexity - bigger probability of mistakes. Sometimes fundamental laws are enough.

Look at the absolutely cataclysmic security catastrophe that is X11 compared to Wayland.

Iā€™m afraid of the day that may come where people will say that Emacs is a security catastrophe due to lack of isolation.

TheGrandNagus ,

This essentially all boils down to ā€œI donā€™t like new things, and despite it being made more secure, I donā€™t trust itā€

How are sandboxes ā€œuntrusted crapā€?

You talk about complexity being bad, yet you seem to prefer X11 over Wayland, and 500 different implementations of the same thing, implemented separately by every app developer, rather than using a standardised xdg-portal. Surely you see the contradiction there?

rottingleaf ,

This essentially all boils down to ā€œI donā€™t like new things, and despite it being made more secure, I donā€™t trust itā€

No, quite the opposite, I like new things, just in my own direction. Which would be simplification. Weā€™ve had this exponential growth of computing power and complexity and expectations in the last 30 years, which canā€™t go on.

Again, where youā€™d use a screwdriver 100 years ago, youā€™ll still generally use a screwdriver, possibly one as simple as 200 years ago, but with computers we for some reason have to hammer nails with a microscope today.

A personal computer should be as complex as Amiga 500 tops.

Wasting 1000 times the energy to try and make it easier to use than that still hasnā€™t yielded satisfactory results, for a sane person this means stop.

The rest is just gaslighting.

How are sandboxes ā€œuntrusted crapā€?

What you run in them is untrusted crap.

yet you seem to prefer X11 over Wayland, and 500 different implementations of the same thing, implemented separately by every app developer,

Yes, whatā€™s standard in X11 has N different variants with Wayland. Correct.

rather than using a standardised xdg-portal

I donā€™t use it at all.

If you meant that Wayland is simpler than X11, letā€™s compare them when Wayland reaches feature parity. Also X11 as a standard is simple enough.

I also consider Nix and Guix to be better solutions to some of the problems Flatpak and Snap solve, and Flatpak and Snap to fall short of solving others.

TheGrandNagus ,

Which would be simplification.

Like I said, much of the new things youā€™re complaining about is simplification. Flatpak, Wayland, xdg-portals.

A personal computer should be as complex as Amiga 500 tops.

Lol. Why stop there? Why not say they should be no more complex than an abacus?

What you run in them is untrusted crap.

How?

And assuming it isā€¦ running it without a sandbox is somehow better??

Yes, whatā€™s standard in X11 has N different variants with Wayland. Correct

Can you please answer. X11 is far more complex than Wayland. Why do you prefer it if you like simplicity?

I donā€™t use it at all.

You donā€™t use programs thatā€¦ do things? Things like follow system theming, give notifications, open/save files, record your screen, open a file picker, etc? I donā€™t think youā€™re grasping what portals are.

If you meant that Wayland is simpler than X11,

Wayland is simpler than X11, by a long shot.

letā€™s compare them when Wayland reaches feature parity.

It wonā€™t ever, by choice. Itā€™s not meant to. X11 is filled with many mistakes that it should never have had.

Also X11 as a standard is simple enough.

The X11 developers say otherwise, and have embraced Wayland.

I also consider Nix and Guix to be better solutions to some of the problems Flatpak and Snap solve, and Flatpak and Snap to fall short of solving others.

Christ. I donā€™t. At all. You want simplicity and are now advocating for Nix and Guix, no Flatpaks, sticking with X11, no xdg-portals?

Do you have the definitions of ā€œsimpleā€ and ā€œcomplicatedā€ mixed up in your mind?

rottingleaf ,

Like I said, much of the new things youā€™re complaining about is simplification. Flatpak, Wayland, xdg-portals.

No. AppImage is relatively simple. Flatpak is not. Thereā€™s a clear difference between ā€œnew shinyā€ and ā€œnewā€.

Lol. Why stop there? Why not say they should be no more complex than an abacus?

Amiga 500 is quite functional as compared to abacus. Modern PCs not so much as compared to Amiga 500.

Can you please answer. X11 is far more complex than Wayland. Why do you prefer it if you like simplicity?

Itā€™s not far more complex as a protocol.

You donā€™t use programs thatā€¦ do things? Things like follow system theming, give notifications, open/save files, record your screen, open a file picker, etc? I donā€™t think youā€™re grasping what portals are.

I donā€™t, quick googling says this is something connected to giving permissions to Flatpaks or something, which I donā€™t use.

Wayland is simpler than X11, by a long shot.

ColibriOS is simpler than Genera.

It wonā€™t ever, by choice. Itā€™s not meant to. X11 is filled with many mistakes that it should never have had.

As in?

The X11 developers say otherwise, and have embraced Wayland.

So what? Itā€™s not a religion to embrace.

Do you have the definitions of ā€œsimpleā€ and ā€œcomplicatedā€ mixed up in your mind?

In what world is Guix more complex than Flatpaks?

See, you are trying to do these emotional hints at me saying something stupid, but this is really too much.

TheGrandNagus ,

You keep saying that far more complex things are actually simpler. Where are you getting it from? AppImages are more complex than Flatpaks, X11 is otherworldly more complex than Wayland, xdg-portals are far simpler than the cluster fuck that is every Dev just creating their own solution, etc.

rottingleaf ,

X11 is otherworldly more complex than Wayland

What the actual fuck? This www.x.org/releases/X11R7.7/ā€¦/x11protocol.html is ā€œotherworldly more complexā€ than this wayland.freedesktop.org/docs/html/ ? Itā€™s more complex exactly in the amount needed to make it more specific and with the client-server model.

AppImages are more complex than Flatpaks

This is bullshit. Something like AppImages can be done with bloody shell scripts.

xdg-portals are far simpler than the cluster fuck that is every Dev just creating their own solution, etc.

Solution for what? Letā€™s please verify that you even know what xdg-portals are used for, that is, that you know what you are talking about.

You keep saying that far more complex things are actually simpler.

You keep ignoring actual questions as if you were above them, you are not.

Where are you getting it from?

From knowing what those things are. I just donā€™t immediately remember any of the details, because thereā€™s too much information in our lives and Wayland, Flatpaks etc are far from the top of the list, and more than that because I expect you to argue in good faith which wonā€™t require putting facts under your nose.

Also you keep behaving as if someone owed you something in general or if they lost an argument. They donā€™t.

DarkThoughts ,

The best protection against malware is closing the security flaws they typically abuse to make them work in the first place.

gandalf_der_12te ,
@gandalf_der_12te@lemmy.blahaj.zone avatar

The biggest security flaw though is typically the human itself.

ā€¦ how do you close that hole?

dubyakay ,

Off yourself.

.

.

.

If you or someone you know is in crisis or experiencing thoughts of suicide, it is important to seek help immediately. Here are resources for support in the USA, Canada, and the UK:

United States:

  • National Suicide Prevention Lifeline: Call 1-800-273-TALK (1-800-273-8255) or text ā€œHELLOā€ to 741741 to reach the Crisis Text Line.
  • You can also reach out to the National Alliance on Mental Illness (NAMI) at 1-800-950-NAMI (6264).

Canada:

  • Talk Suicide Canada: Call 1-833-456-4566 or text 45645. Available 24/7.
  • You can also contact the Kids Help Phone at 1-800-668-6868 or text CONNECT to 686868 for support.

United Kingdom:

  • Samaritans: Call 116 123 for free at any time, or you can email [email protected].
  • You can also reach out to Mind at 0300 123 3393 or text 86463 for mental health support.

Please remember that you are not alone, and there are people who care and want to help you.

DarkThoughts ,

Not that easy if you want it to be safe, quick and painless - and ideally without traumatizing someone else.

gandalf_der_12te ,
@gandalf_der_12te@lemmy.blahaj.zone avatar

wtf

CriticalMiss ,

Go BSD.

desktop_user ,

Can you describe firewire in great detail?

FireWire400 , (edited )
@FireWire400@lemmy.world avatar

Itā€™s an outdated interface connection standard commonly used by camcorders in the 1990ā€™s (mostly MiniDV camcorders I think); its technical name (or name of its specification rather) is IEEE1394, ā€˜FireWireā€™ is just the marketing term Apple used for it. I think Sony called it ā€˜i.Linkā€™.

FireWire400 is really called IEEE1934a and has a theoretical transfer rate of 400 Mb/s, it can deliver 7 watts of power and carry ethernet packets.

The standard pretty much died off as soon as USB 3.0 came out AFAIK, since they couldnā€™t get higher transfer speeds than a theoretical 800 Mb/s (whereas USB3 supports up to 5 Gb/s).

My profile picture shows a FireWire400 port on the front panel of a PowerMac G5.

GamingChairModel ,

I wonder how much of it is that casual users are less likely to even own/use a laptop/desktop for personal use anymore. Mobile devices, and maybe tablets, have been the most popular way of connecting to the internet for a while.

Jeffool ,

I love the idea of using Linux. But then I end up playing Warzone every weekend with my family. Canā€™t give that up. The best part is that they want kernel access, and still have cheating problems, apparently. (Must be higher than my level!) But it still inherently affects me, as they wonā€™t port to Linux.

coldy ,

Kernel level anticheat still canā€™t stop cheaters? Time for boot partition anticheat, let it run before the kernel ;)

Hell, layer the whole OS on top of anticheat software just to play one game.

bitwaba ,

Warzone Entertainment System, running the latest WarOS!

Jeffool ,

Funny, with a harsh ring of truth. I actually would be interested if they could dual boot with the game on a partition. That would make the transition to Linux easy too. But ultimately as it is, itā€™s ā€œuse Windows, or say to hell with playing games with your familyā€. Iā€™m lucky that I still enjoy playing games with them, and them with me, so I gotta stick with that.

ghurab ,

Naah, obviously the solution unrestricted mic and camera access with AI analyzing the stream to detect cheating.

Acidbath ,

Im at a similar place as you where I do as much gaming on linux as possible but then there are some games that just do not work :(. At this point Im really thinking about playing warzone on a console since there is support for keyboard and mouse (last time I checked).

LainTrain ,

Only 3.42% in Europe RIP

themurphy ,

Yeah, hopefully government and EU interest in open source will change this on a large scale.

Both Germany and Switzerland both made progress in the last months.

vsis ,
@vsis@feddit.cl avatar

Everywhere, except India, itā€™s about 3%.

With India the average is a bit more than 4%.

LainTrain ,

Does java even run on linux

Trollpakk ,

Except Norway with 29.1%. What gives?

LainTrain ,

Server nation rise up

Trollpakk ,

Ahhā€¦ Thatā€™s it! Of course it is. Thanks!

Trollpakk ,

I was checking out regional market shares and it seems Linux has a 29.1% market share in Norway. Anybody knows why? Linux is almost twice as big as OSX there.

needanke ,

Penguins are comfy in the cold climate

techognito ,
@techognito@lemmy.world avatar

So in theory, one third of everyone I meet should be a linux user. Yet everyone uses windows. šŸ¤” Am I the 30%?? /sw

Trollpakk ,

Right? It seems fishy to me, thatā€™s why I asked. Would love to know the reason for this.

techognito ,
@techognito@lemmy.world avatar

I do actually know a fair share of people using Linux in my social circle, but a lot of them uses both windows and Linux. My family uses Linux for their private devices, as that was a requirement to get my technical support. And an increasing number of my friends are moving over to Linux.

What I find weird is the sudden increase of 10% (from 18.16% to 29.04%). Like, did everyone get back from vacation after a Linux conversion camp or something?

Trollpakk ,

Good on you for converting even more normies to Linux.

What I find weird is the sudden increase of 10% (from 18.16% to 29.04%).

There have to be a reason for this. Maybe people finally got fed up with MS & Apple.

Technus ,

My Windows 10 install shat the bed so Iā€™m trying Linux Mint again.

Itā€™s crazy how a computer can feel brand new again when 50 different pieces of bloatware arenā€™t trying to all start on boot.

The gaming situation is so much different now with Steam Play and Proton. Although Iā€™ve found that just because a game is Steam Deck Verified, it doesnā€™t necessarily mean itā€™ll work the first try.

TheLightItBurns ,

I installed PopOS last year after I got fed up with bloatware, adds, and just outright annoying ā€œnotificationsā€ in windows 10 and 11, and I havenā€™t looked back.

I found a great resource in the ProtonDB website for configuring proton settings as I have also occasionally had games not work properly that are steam deck verified. There are typically enough people posting how they overcame issues and their build components so you can try to match up their fixes with your computer parts. It helps a ton most of the time.

Technus ,

Yeah ProtonDB is great but it doesnā€™t always have a fix.

For example, Powerwash Simulator is Steam Deck Verified and has a Platinum rating and most people are like ā€œruns great out of the box, no problemsā€.

However, when I tried it, the screen would blank every second until I managed to put the game into windowed mode, and then the lower portion of it was concealed behind the app panel.

This was on a fresh Linux Mint 22 install with the latest proprietary Nvidia drivers.

Also, you canā€™t install most games until you enable ā€œSteam Play on all titlesā€ which I had to figure out myself.

Blubber28 ,

Installed Bazzite myself yesterday and yeah it feels like I bought a new PC without having actually spent the money XD

deathbysnusnu ,

How much of the unknown portion is linux?

BlanK0 ,

We making to the 5% with this one!!! šŸ—£ļøšŸ’ÆšŸ™šŸ”„šŸ”„šŸ”„šŸ”„

skulblaka ,
@skulblaka@sh.itjust.works avatar

Iā€™m doing my part!

No really, I installed Mint on my home machine less than a week ago. Trying to get my buddy to switch too before Win11 comes knocking.

Blisterexe ,

Tell him a stranger from the web says he should switch

AutoPastry ,

Didnā€™t realize how big it was in India, 16.21%!

Aatube ,

Technological sovereignty

Beaver ,
@Beaver@lemmy.ca avatar

Yup, we donā€™t need big corporations for nada.

rorschah ,
@rorschah@lemdro.id avatar

Kerala have a big contribution to this since all the school IT labs + government offices here use ubuntu or its slightly modified versions. Wish if every state did so.

Deceptichum ,
@Deceptichum@quokk.au avatar

Everything I hear from India is generally pretty negative news with the exception of basically anytime Kerala is mentioned.

Trollpakk ,

In Norway itā€™s 29.1%

hddsx ,

What is unknown? Various Unix variants? Custom embedded operating systems ( does that count as desktop?)?

joewilliams007 ,
@joewilliams007@kbin.melroy.org avatar

maybe browsers that obfuscate that information

Tenkard ,

Me, changing my user agent to ā€œBrowser McBrowserFaceā€

nebulaone ,
@nebulaone@lemmy.world avatar

I know this is probably a joke, but donā€™t do that. It gives you a unique fingerprint.

FireWire400 , (edited )
@FireWire400@lemmy.world avatar

Things like Haiku (or BeOS), ReactOS, ArcaOS, AmigaOS etc.

I donā€™t think they do but maybe theyā€™re also counting type 1 hypervisors.

Edit: Nevermind, I thought they bundled in ā€œOtherā€ into that category; they didnā€™t, as evident by the chart below the stats which includes ā€œOtherā€.

Itā€™s probably just the case of they couldnā€™t determine the OS being used.

missphant ,
@missphant@lemmy.blahaj.zone avatar

So Iā€™ve looked into the yearly stats and macOS stats and the fact that they call it OS X and the macOS version stats only go up to Catalina (the last 10.x, released in 2019) makes me believe most of these are macOS 11+ users.

residentmarchant ,

*insert Simpsons meme"

Say it again!

sigh 2024 is the year of the Linux desktop

random_character_a ,
@random_character_a@lemmy.world avatar

Well, lately Microsoft has hitting big on enshittification. More than usual.

QuarterSwede ,
@QuarterSwede@lemmy.world avatar

Sigh. macOS nowadays.

paraphrand ,

They label it as OS X and macOS on different parts of the page.

thirstyhyena ,

What is the difference between these two terms?

paraphrand ,

Oh, it use to be Mac OS. Then it was Mac OS X (Mac OS Ten). Now itā€™s macOS.

gedaliyah ,
@gedaliyah@lemmy.world avatar

Look out, ā€œUnknownā€ weā€™re coming for you!

299792458ms ,

stonks

  • All
  • Subscribed
  • Moderated
  • Favorites
  • ā€¢
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines