this post was submitted on 26 Jun 2023
5 points (100.0% liked)

Operating Systems

3910 readers
1 users here now

All things operating system related, from Windows to Mac to Linux distros and the more obscure.

Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
 

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!

(page 3) 50 comments
sorted by: hot top controversial new old
[–] boonhet@lemm.ee 0 points 2 years ago (1 children)

Been gaming on Gentoo for over a year, even if I haven't found much time for gaming in the last few months.

Don't do it if you've gotten too lazy for Arch though. Try Pop!_OS or Linux Mint or something. Enjoy an easy distro for a bit, till you get the itch for Arch back.

load more comments (1 replies)
[–] nadiaraven@beehaw.org 0 points 2 years ago (1 children)

I use Arch with XFCE. Yes, it took a while to get running properly, and just the other day I went to print something and realized cups hadn't even been installed yet, so I spent 15 minutes getting my printer up and running, so I totally get that it's not for everyone. I like it because of the detailed wiki with great tutorials and instructions on getting things working, like the one I used to get a nextcloud installation working on my computer. And I like it because of the extensive Arch User Repository, so I know I can install whatever I like. I mostly just play Stardew Valley and trackmania on it. I've used Manjaro before and enjoyed that too, and it comes with all the benefits of arch.

I installed Mint on my friends computer, which works totally fine, but I don't know how it is for gaming; she definitely doesn't game.

[–] nlm@beehaw.org 0 points 2 years ago (1 children)

Arch really is a documentation project rather than a distro, their wiki tops most everything out there :)

[–] Mummelpuffin@beehaw.org 0 points 2 years ago (1 children)

Seriously, ArchWiki has taught me most of what I know about Linux.

[–] nlm@beehaw.org 0 points 2 years ago

Yeah, that's basically where you go if you ever have some obscure problem, it's incredibly useful really.

[–] lertsenem@mastodon.lertsenem.com 0 points 2 years ago (6 children)

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. :]

load more comments (6 replies)
[–] Sharmat@beehaw.org 0 points 2 years ago (1 children)

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

[–] nlm@beehaw.org 0 points 2 years ago (3 children)

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

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

load more comments (3 replies)
[–] noodlejetski@kbin.social 0 points 2 years ago (3 children)

EndeavourOS with Plasma. migrated from Manjaro after one too many questionable decision on their side.

load more comments (3 replies)
[–] noyesster@beehaw.org 0 points 2 years ago

On my gaming desktop, I am using Fedora currently with the Awesome WM. That might change though with all the RH stuff going on. On my gaming laptop I switch between Arch and Void with Qtile on both.

[–] simonced@lemmy.one 0 points 2 years ago (1 children)

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

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

[–] nlm@beehaw.org 0 points 2 years ago (2 children)

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

load more comments (2 replies)
[–] bdonvr@thelemmy.club 0 points 2 years ago

Fedora, KDE spin. Been working great, and I'm kinda liking DNF

[–] HubertManne@kbin.social 0 points 2 years ago (1 children)

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.org 0 points 2 years ago (2 children)

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

load more comments (2 replies)
[–] hallettj@beehaw.org 0 points 2 years ago* (last edited 2 years ago) (5 children)

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 0 points 2 years ago (1 children)

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 0 points 2 years ago (1 children)

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?

load more comments (1 replies)
load more comments (4 replies)
[–] 20gramsWrench@lemmy.dbzer0.com 0 points 2 years ago (2 children)

garuda, it's just a fancy arch install with the ugliest, bloatiest, default theming you can imagine, but once you get rid of it it's pretty solid.

load more comments (2 replies)
[–] dewritoninja@pawb.social 0 points 2 years ago

Im running good old Ubuntu with gnome. I mostly play terraria, minecraft I and Bethesda rpgs these days so it does everything I need.

[–] Xeelee@kbin.social 0 points 2 years ago (1 children)

I've been using Mint without any issues for a while now. I only play Steam games, though.

[–] green_witch@beehaw.org 0 points 2 years ago

Also on the latest Mint. I really like it. I was previously on PopOS and enjoyed that, too.

[–] Sneptaur@pawb.social 0 points 2 years ago

I use Arch with KDE. I don't recommend Manjaro because it has historically had some serious problems, so for people who want Arch without as much hassle, I'm recommending EndeavourOS. It's what Manjaro should be like.

[–] nezach@discuss.tchncs.de 0 points 2 years ago

Endeavour OS (PC and Laptop) and Steam OS. Very happy with both.

[–] aetris@kbin.social 0 points 2 years ago (1 children)

Don't see it mentioned here - Nobara. Fedora tweaked by Glorious Eggroll to be as compatible as possible with games ootb. Worth looking at.
I used to use Arch but Nobara works too well for me to go back.
A big thing for me too is the custom version of OBS that the welcome GUI installs is excellent and allows for application specific/exclusionary audio sinks so I can screen record games without having audio from discord/music.

load more comments (1 replies)
[–] ivereadalltheory@beehaw.org 0 points 2 years ago (1 children)

Fedora but I'm about to move to NixOS Unstable or VanillaOS if it gets better NVIDIA integration.

[–] kirstierthanthou@beehaw.org 0 points 2 years ago (1 children)

I am on Vanilla OS with a NVIDIA gpu and its running pretty well.

load more comments (1 replies)
[–] Gatsby@lemm.ee 0 points 2 years ago (8 children)

I use Arch, but I have two graphics cards in my system and I run a stripped windows VM for any game that I want ray tracing or 4k in.

My arch setup has an older Nvidia Quadro card and can run everything on like medium settings, but my virtual machines have a 3080ti. I didn't want the wear and tear on my 3080ti just to watch YouTube or play indie games that don't need the horsepower, but I still want to try stuff like portalRTX or stable diffusion and the like that needs an enthusiast graphics card.

This to me is the best of both worlds. I can run the VM in the background so I can use my desktop(connected to the TV) as a media center and have cyberpunk playing totally hidden and streaming to my steam deck for ray tracing maxxed settings.

Hell I even play Half life:Alex VR in a virtual machine and stream it over wifi to my Oculus quest.

[–] nlm@beehaw.org 0 points 2 years ago (2 children)

Ok, I want your setup. Can I have it? Please? :)

Sounds pretty nice!

load more comments (2 replies)
load more comments (7 replies)
load more comments
view more: ‹ prev next ›