• thantik@lemmy.world
      link
      fedilink
      English
      arrow-up
      24
      arrow-down
      2
      ·
      9 months ago

      With the work that Valve is doing on Wine, and Proton, it’s really becoming easier and easier to justify the switch.

      • aksdb@lemmy.world
        link
        fedilink
        English
        arrow-up
        13
        arrow-down
        3
        ·
        9 months ago

        With the work that Valve is doing on Wine, and Proton, it’s really becoming easier and easier to justify the switch deck.

        FTFY

      • Blaster M@lemmy.world
        link
        fedilink
        English
        arrow-up
        4
        ·
        9 months ago

        Tried getting PCVR working with the Quest 2, unfortunately support is still a hot mess and leaves the system with a super janky flood of audio devices, in addition to legendary stutters that make it unplayable. Win11 still better for VR.

      • ColeSloth@discuss.tchncs.de
        link
        fedilink
        English
        arrow-up
        3
        ·
        9 months ago

        Only pita setback is things like fortnite and other multi-player games insisting on only using anticheat software that isn’t Linux compatible.

        • thantik@lemmy.world
          link
          fedilink
          English
          arrow-up
          3
          arrow-down
          1
          ·
          9 months ago

          I’m okay with this. I don’t support those publishers anyways. People should stop supporting them altogether.

    • agent_flounder@lemmy.world
      link
      fedilink
      English
      arrow-up
      9
      arrow-down
      1
      ·
      9 months ago

      Could be. If you’re running a core 2 duo I am fairly certain Linux will run markedly faster than Windows 10+…

      • Shdwdrgn@mander.xyz
        link
        fedilink
        English
        arrow-up
        5
        ·
        9 months ago

        I actually still have some old servers with chips from that period, one of them is still being used as my firewall but until last year I was using others to run multiple VMs for email and web sites. Not as power-efficient but they do still work.

    • Abnorc@lemm.ee
      link
      fedilink
      English
      arrow-up
      6
      ·
      9 months ago

      People on the fence may be convinced. Most will just buy new computers.

    • Max-P@lemmy.max-p.me
      link
      fedilink
      English
      arrow-up
      4
      arrow-down
      1
      ·
      9 months ago

      That’s not a guarantee on the Linux world either, but at least you do have the option of recompiling your distro to not use those options.

      There’s talks from some distros to start dropping support for such old CPUs because it’s holding back newer CPUs that could run even faster by using those instructions.

      • Shdwdrgn@mander.xyz
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        1
        ·
        9 months ago

        Is it really that hard to include a fallback though? Obviously there’s a way to collect the information without that flag. I suppose if you didn’t want to take a performance hitting checking the flag all the time it could become a compile option (I would think anyone running that old of hardware would be willing to learn how to compile the kernel anyway), but there should be options available to keep the support available some how?

        • Max-P@lemmy.max-p.me
          link
          fedilink
          English
          arrow-up
          2
          ·
          9 months ago

          That’s pretty much exactly how it works already. You compile with -march=x86-64-v4 and it’ll use SSE and AVX all over the place.

          glibc does the runtime thing, but only once on application startup where the dynamic linker will link the version of the function optimized for your CPU. But it’s a manual process on glibc’s part, the variants are written by hand.

          Not every project cares enough to do it dynamically like that and it would be a nightmare that way.

          The fallback is, recompile with -march=x86-64 which will only use the base set of instructions. Or -march=i486 if you want to run on absolutely ancient hardware.