I’m currently on Win11 but I’m getting that familiar Linux itch and want to dual boot a while again. I tend to gravitate towards Ubuntu simply because it’s so big and well supported by most things.

I’ve run Arch in the past but I’ve gotten too old and lazy for that if I’d be completely honest. I have played with manjaro and endeavour though… and opensuse tumbleweed, rolling is kind of nice.

Not sure what I’d try out first this time so I figured I’d get some inspiration from you guys!

  • Nyanix@beehaw.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 years ago

    I’ve been on Manjaro for 3 years, honestly love it, it’s treated me great for gaming and given me so little to have to fix that my wife has also been running it for 2 years.

  • Don't ask my name@beehaw.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 years ago

    Save yourself a lot of trouble and get a secondary SSD to put Linux on instead of doing a traditional dual boot. Normal dual boots with windows suck ass and lead to problems.

    As for a distro, I keep going back to endeavourOS. It’s just so minimal out of the box, and I still can’t find anything to match the convinience of the AUR + Pacman for package management.

  • thayer@lemmy.ca
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    2 years ago

    All of my workstations are now running Fedora Silverblue. Steam is installed via flatpak, and GPU is a Radeon 6800 XT. I also have a Steam Link for couch co-op. All is well on the gaming front!

    Debian Sid and Arch have run equally well with this setup. Your choice of distro matters much less now compared to a few years ago, especially if you favour a flatpak workflow.

    Edit: typos!

  • suddenlythequietrose@beehaw.org
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 years ago

    I’ve been on pop os for at least 2 years now, been loving it. Most of my gaming is through steam so compatibility issues are the exception, not the rule. It’s a bit of a dream come true to play God of War on Linux, it feels like all the stars aligned.

    Even when I bork the install by fucking around in the kernel I wind up getting back on pop rather than finally taking the dive into arch.

  • simonced@lemmy.one
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 years ago

    In my case, I use Fedora exclusively (no dual boot).

    I tried PopOS, but I had problems with each update.

    • nlm@beehaw.orgOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 years ago

      Any particular reason for Fedora or is that just what you are comfortable with?

      • simonced@lemmy.one
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 years ago

        No real reason I think.

        I had problems with PopOS, but I could have gone Mint since it’s the one I knew the most.

        But since I was reinstalling, I gave Fedora a try, and I liked it so I kept it.

        • nlm@beehaw.orgOP
          link
          fedilink
          English
          arrow-up
          0
          ·
          2 years ago

          Feels like that’s pretty common these days. Most of the big distros are polished enough to get the work done without jumping through too many hoops really.

  • lertsenem@mastodon.lertsenem.com
    link
    fedilink
    arrow-up
    0
    ·
    2 years ago

    I weirdly did not see anyone mentioning SteamOS? Formerly based on Ubuntu, now based on Arch, I believe.

    It’s the distribution that the #SteamDeck is packaged with, and so it’s become my main gaming distrib now. :]

    • nlm@beehaw.orgOP
      link
      fedilink
      arrow-up
      0
      ·
      2 years ago

      Are they providing the arch based version for download now? I was under the impression they’ve only set it up for steam decks but not for general use?

        • nlm@beehaw.orgOP
          link
          fedilink
          arrow-up
          0
          ·
          2 years ago

          Yeah, thought so. Hope they’ll publish their newer versions as well soon.

      • lertsenem@mastodon.lertsenem.com
        link
        fedilink
        arrow-up
        0
        ·
        2 years ago

        @nlm You’re right, but there is an unofficial version (with some tweaks to work on standards PC) available here.

        It works as intended, but I would only recommend it if you intend to use your PC in a console-like setup (ie, plugged to a big screen, with a game controller).

        • jakepi@beehaw.org
          link
          fedilink
          arrow-up
          0
          ·
          2 years ago

          I tried HoloISO and had pretty mixed results. I’ve had much better luck with ChimeraOS.

          The devs on ChimeraOS are excellent too, they take in community feedback and are very helpful.

        • nlm@beehaw.orgOP
          link
          fedilink
          arrow-up
          0
          ·
          2 years ago

          Ah cool!

          Not something I’d use now then but still neat that you can get it :)

  • hallettj@beehaw.org
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    2 years ago

    I’ve been evaluating NixOS to make sure I can run games on it. I’ve only tried a machine with Intel graphics so far, but I see that AMD and Nvidia drivers are packaged. It seems convenient now that I’ve figured out the setup.

    Vulkan is set up out of the box.

    It’s necessary to enable 32-bit DRI support by adding this line to /etc/nix/configuration.nix:

    hardware.opengl.driSupport32Bit = true;
    

    To use Lutris install the package and use its UI to install runners. I didn’t have to configure any extra libraries to get Battle.net running. You can configure the “system wine” that Lutris sees, and extra libraries your games might need like this:

    home.packages = with pkgs; [
      (lutris.override {
        extraLibraries =  pkgs: [
          # List library dependencies here
        ];
        extraPkgs = pkgs: [
          wine-staging
        ];
      })
    ];
    

    Those lines go in a Home Manager config file, like ~/.config/home-manager/home.nix. That installs Lutris, and any listed dependencies at the same time.

    NixOS does not put dependencies in the file paths where programs usually look for them. That traditional directory structure is called the Filesystem Hierarchy Standard, or FHS. But Nix packages can create a virtual FHS where needed, and that is what the Lutris package does. That lets software that isn’t built for Nix work, like Lutris’ Wine runners. That means that for games to access libraries those libraries must be listed in that extraLibraries option so that they are included in the FHS.

    32-bit libraries are in pkgs.pkgsi686Linux.* if you need them.

    I haven’t tried Steam yet, but I think it has an option similar to the extraLibraries one for Lutris.

    A nice feature of NixOS is that if you add a bunch of libraries to your config trying to get a game to work, those libraries are automatically unlinked when you remove them from your config so your system stays nice and tidy.

    • Chobbes@beehaw.org
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 years ago

      I’ve been having a great time with games on NixOS. Steam just works when you enable it. I believe you can specify extra libraries for the filesystem hierarchy hackery, but I haven’t needed to yet. One thing you should know about (if you don’t already) is steam-run which is a simple command line tool that automatically wraps things in a normal FHS. Super convenient for the occasional binary :).

      • hallettj@beehaw.org
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 years ago

        Good to know, thanks! Do you find steam-run to be helpful even for non-steam binaries that need an FHS? Or do you use it mainly for games?

        • Chobbes@beehaw.org
          link
          fedilink
          English
          arrow-up
          0
          ·
          2 years ago

          Yeah, exactly! For steam itself on NixOS you don’t have to manually use steam-run, but steam-run is a handy little tool to wrap / run other commands with the FHS that NixOS sets up for steam. I’ve mostly used it to run a few Linux games that I have binaries for, but don’t have on steam… I’m pretty sure I used it for another Linux program too, but I can’t remember what right now.

    • Joker@beehaw.org
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 years ago

      Which packages do you add to extraLibraries? How do you find the dependencies? I’m struggling with this at the moment.

      • hallettj@beehaw.org
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 years ago

        It depends on what your games need. I haven’t added any libraries yet, but I haven’t tested many games yet either. If something isn’t working you might be able to determine a missing library from the log output. In Lutris the Play button has an arrow on it that you can click on to find the “Show log output” button.

    • Atemu@lemmy.ml
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 years ago

      32-bit libraries are in pkgs.pkgsi686Linux.* if you need them.

      Put the libraries into extraLibraries; it’ll add them for both µarches. No need to explicitly use pkgsi686Linux yourself.

  • HubertManne@kbin.social
    link
    fedilink
    arrow-up
    0
    ·
    2 years ago

    Im really surprised that I don’t see zorin os on these types of threads. Its main stick is to be chock full of out of the box software especially around windows compatibility. wine and play on linux are ready right away and I can run most windows programs right after install.

    • nlm@beehaw.orgOP
      link
      fedilink
      arrow-up
      0
      ·
      2 years ago

      It looks pretty nice straight out of the box too. You used it long?

      • HubertManne@kbin.social
        link
        fedilink
        arrow-up
        0
        ·
        2 years ago

        yes. years now. I keep on trying something else but I don’t have much patience now and take the easy way out.

        • nlm@beehaw.orgOP
          link
          fedilink
          arrow-up
          0
          ·
          2 years ago

          It’s pretty nice that linux has gotten far enough that we can have that luxury these days. :)

  • winged_fluffy@kbin.social
    link
    fedilink
    arrow-up
    0
    ·
    2 years ago

    I’m currently on Pop! OS 22.04 LTS. For me it worked out of the box. That installer with the NVidia drivers already included was a dream, so I didn’t have to set up anything special. I did end up preferring the KDE desktop over Gnome, so I just went screw it and installed KDE plasma on top of it. It’s been my daily driver like this for years.

    Though, honesty requires me to mention that over the 4-ish years I’ve been using it they pushed a kernel update twice which killed the nvidia drivers, causing you to be unable to boot to the desktop. Solution was as simple as just rebooting into the previous kernel for a while and waiting for an update which fixes it, but still…

    Other than that, pretty happy with it and I’m unlikely to change anytime soon.

    • ezri@beehaw.org
      link
      fedilink
      arrow-up
      0
      ·
      2 years ago

      I tried PopOS but had several issues immediately, including the display flickering despite updating my Nvidia driver. Other than that it just felt like a somewhat worse Ubuntu to me, so I quickly went back to Ubuntu

      • nlm@beehaw.orgOP
        link
        fedilink
        arrow-up
        0
        ·
        2 years ago

        One thing that bugged me last time I wanted to try out Pop was that my Efi partition was considered too small. It was 500mb, you’d think that’d be enough?

  • Sharmat@beehaw.org
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 years ago

    Currently running Fedora on my laptop and Arch on my desktop, though I’ll probably migrate from Fedora to openSUSE next month.

    • nlm@beehaw.orgOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 years ago

      Oh, an openSUSE fan! There’s dozens of us! :)

      I do really enjoy Tumbleweed with Plasma to be honest. It just feels so polished.

      • ANuStart@kbin.social
        link
        fedilink
        arrow-up
        0
        ·
        2 years ago

        While I like Tumbleweed and Plasma, I can’t for the life of me figure out why KDEWallet keeps asking for my password to get on wifi every time I reboot.

        • Sharmat@beehaw.org
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          2 years ago

          Yeah, that happens sometimes for me too. I usually just disable it in the settings, but irrc, if you set the kwallet password and the user password to be the same, it shouldn’t ask for it.

          • nlm@beehaw.orgOP
            link
            fedilink
            English
            arrow-up
            0
            ·
            2 years ago

            Yeah I remember it happening for me at some point as well and I think this fixed it. It was quite some time ago though so I’m not sure at all. :P

  • s900mhz@beehaw.org
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 years ago

    A little background for context. I’m gamer and professional software developer. I’ve been dual booting windows 11 and pop os for awhile. Windows for games and pop os for everything else… Over the weekend I switched to NixOS. This came with a learning curve which I spent a day or so learning. I’ve been getting the hang of it now and I love it so much. I definitely recommend it. I managed to get steam working without much fiddling and my emulators. It’s been great! The benefits for programming are obvious. Allowing me to basically stop using docker dev containers.

    I completely removed windows from my computer and I’m very happy.

    • nlm@beehaw.orgOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 years ago

      We used to run Ubuntu at my last job, it was so nice! I’m back in Windows land now though…

      • s900mhz@beehaw.org
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 years ago

        Yeah my job recently started letting developers choose between windows and Mac now which is a step in the right direction… their excuse is that all their security software doesn’t run in Linux… Ill accept using a Mac over WSL though, that was a huge pain

        • nlm@beehaw.orgOP
          link
          fedilink
          English
          arrow-up
          0
          ·
          2 years ago

          I’m still happy WSL exists, it’s definitely better than nothing if you’re stuck in Windows land!

          • s900mhz@beehaw.org
            link
            fedilink
            English
            arrow-up
            0
            ·
            2 years ago

            Yeah absolutely! I know I dissed it, but I was happy to have it when I was stuck on windows for work.

  • TheNH813@beehaw.org
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 years ago

    I use Void Linux. I like how much more up to date the libraries and apllications tend to be, it’s quite similar to Arch in that regard, as it’s a true rolling release just like Arch.

    It also tends to be very stable as well, with couple minor issues I had ever experienced got fixes within 48-ish hours. One was hugin not launching, and the other a transition issue between pipewire-media-session and wireplumber being the default.

    Void uses runit for service management, and is still multithreaded despite taking a more similar approach to just plain shell scripts, and constantly monitors services. What I like about this is more much simpler services are to write compared to SystemD, and then you just put a simlink to them from /etc/sv/ to /etc/runit/runsvdir/default/ to enable or disable.

    Void also uses their own XBPS package system, which operates similar to pacman, and is equally fast. Void is basically a rolling release like Arch, with the latest updates, but instead has a more “classic” system management style, which I for one greatly appreciate.

    After nearly a decade of distro hopping, Void is where I landed for at least the past several years, and I see no reason to leave. Just sharing incase someone else out there thinks this sounds like the system for them, and if so, Take a Step Into the Void, it might be what you’re looking for. That’s what I like about there being so many distros, there’s choice to match each one’s needs.

    • nlm@beehaw.orgOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 years ago

      That’s another one I’ve heard of but never tried. Sounds pretty nice. Rathet Arch-like in a KISS approach l?

      • TheNH813@beehaw.org
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 years ago

        Yup! That’s my kind of approach too. And Void boots just as fast. Up to date, boots very quickly AND is a install what YOU need, without tons of preloaded choices, distro. Arch and Void are at the top of my list for that reason. My personal file server runs Arch, my “client” computers run Void. I was surprised the touchscreen on my laptop (Ideapad 5 Pro, Ryzen 5600U version) worked without any configuration honestly, so hardware support is quite good on Void too.