this post was submitted on 26 Jun 2023
3 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
[–] hobbsc@lemmy.sdf.org 0 points 2 years ago (2 children)

Mint Cinnamon. Things generally work put of the box. There's the occasional weird config mess to get into but it's Linux.

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

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.

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

I'm on Arch right now, migrated to it after almost 2 years on Fedora. I'll probably still go back and forth between the two.

[–] 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 (2 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 :).

load more comments (2 replies)
load more comments (4 replies)
[–] soulsource@discuss.tchncs.de 0 points 2 years ago (9 children)

I'm running Gentoo on my gaming PC, and would not want anything else.

It's very customizable, as it allows to tweak packages' optional dependencies at compile time. It's also rolling release, so no stress with distribution upgrades. Despite that, it's also very stable (most of the time...).

So far the only downside I've seen is that updates can take a while, as almost all packages get compiled from source.

load more comments (9 replies)
[–] simonced@lemmy.one 0 points 2 years ago (3 children)

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

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

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)
[–] sadreality@kbin.social 0 points 2 years ago

Win11 is worse than a phone vis a vis spying. Finally made a switch. could not install popOS, so ended up with mint.

[–] 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.

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

Oh I've tinkered with Gentoo plenty in the past (I still miss OTW if that rings any bells) and no, I really don't have the patience for it these days. :)

And yeah, I'll probably end up installing something a bit more fancy soon-ish.. for now I plopped Kubuntu 20.04 on there and Diablo IV is downloading as we speak!

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

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

load more comments (2 replies)
[–] gamma@programming.dev 0 points 2 years ago

I'm on EndeavourOS, but my laptop will be moving to Fedora Sericea (Silverblue, but Sway) to try that out.

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

Pop!_OS ᕙ( •̀ ᗜ •́ )ᕗ

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

Pop!_OS for life!

load more comments (1 replies)
[–] Kuujaku@kbin.social 0 points 2 years ago

Currently on Artix, but planning on changing to Gentoo soon.

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

Not at all an expert, but I'm doing fine with most games on Manjaro. Most things worked out of the box with Proton on Steam. I also liked Arch before I got old and lazy, and Manjaro seems to be a good way to get most of the benefits of Arch with lazier upkeep.

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

I have my gaming computer hooked to my TV and running Chimera OS. Makes it easy to use with just a controller.

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

Sounds like a sweet setup for controller based gaming!

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

I'm using Manjaro KDE - working well with Steam Games with Proton for must games.

[–] suddenlythequietrose@beehaw.org 0 points 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.

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

I've been using Fedora for the past few years and have been pretty happy with it. It updates at just the right cadence for me where I get new stuff pretty quickly but I'm not on a rolling release.

[–] 20gramsWrench@lemmy.dbzer0.com 0 points 2 years ago (1 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.

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

You're really selling it :D

..I looked it up. You're correct. That.. was flashy.

[–] TrontheTechie@lemmy.blahaj.zone 0 points 2 years ago

I’ve been using Garuda as well. It’s solid, and I like the fact they have a gaming variant that takes a lot of the nitpick presetup out of the picture.

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

I use Arch with KDE Plasma for that comfy desktop environment feel but switch to BSPWM ever so often for productivity or to use my pc as just a media center

[–] 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.

load more comments
view more: ‹ prev next ›