this post was submitted on 05 Apr 2025
1221 points (100.0% liked)

Games

38185 readers
1601 users here now

Welcome to the largest gaming community on Lemmy! Discussion for all kinds of games. Video games, tabletop games, card games etc.

Weekly Threads:

What Are You Playing?

The Weekly Discussion Topic

Rules:

  1. Submissions have to be related to games

  2. No bigotry or harassment, be civil

  3. No excessive self-promotion

  4. Stay on-topic; no memes, funny videos, giveaways, reposts, or low-effort posts

  5. Mark Spoilers and NSFW

  6. No linking to piracy

More information about the community rules can be found here and here.

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 16 points 3 weeks ago (18 children)

I completely disagree. Debian is not beginner-friendly. Go with Bazzite if your focus is gaming.

It is a gaming-focused distribution. It's also an "atomic" distribution, which basically means it's really hard to break it. It's more like Android or IOS where the OS and base system are managed by someone else. They're read-only so you can't accidentally break them.

For example, instead of trying to manage your own video card drivers, they come packaged with the base system image, and they're tested to make sure they work with all the other base components.

I've been using Linux since the 1990s, so I've run my share of distributions: Slackware, RedHat, Gentoo, Debian, Ubuntu, etc. Even for someone experienced, atomic distributions are great. But, for a newcomer they're so much better.

[–] [email protected] 4 points 3 weeks ago (6 children)

How does Bazzite fare when I want to do something a bit different. Install docker, Python, PHP, sqlite, etc. I'd normally just install them, but does this work for Bazzite and other atomic/immutable distros?

[–] [email protected] 6 points 3 weeks ago (5 children)

So, there are multiple ways of installing things. For GUI apps the standard way is flatpaks. Some non-GUI things are installed that way, but it's less common.

For CLI apps, homebrew is installed by default and it's recommended as a way to install CLI things.

The method I like for apps that have a lot of interdependencies is to use a distrobox. If you want a development environment where multiple apps all talk to each-other, you can isolate them on their own distrobox and install them however you like there.

I currently have a distrobox running ubuntu that I use for a kubernetes project. In that distrobox I install anything I need with apt, or sometimes from source. Within that kubernetes project I use mise-en-place to manage tools just for that particular sub-project. What I like about doing things this way is that when I'm working on that project I have all the tools I need, and don't have to worry about the tools for other projects. My base bazzite image is basically unchanged, but my k8s project is highly customized.

If you really want to, you can still install RPMs as overlays to the base system, it's just not recommended because that slows down upgrades.

More details here:

https://docs.bazzite.gg/Installing_and_Managing_Software/

[–] [email protected] 2 points 3 weeks ago (1 children)

I moved to endeavouros. First time using a rolling release, and I was struggling with some webdev stuff cause node was on a recent non-lts build and a few other things.
Not a problem for building, cause I already have that containerised. But things like installing packages was refusing, and obviously couldn't run dev workflows.

Until I realised I should just work inside a container.

I know vscode is still Microsoft (and I'm sure I could get it to work with vscodium), but the dev container workflow is fantastic.
Absolute game changer.
And I know I can easily work on a different platform, os whatever. And still have the same dev environment.

[–] [email protected] 3 points 3 weeks ago

Until I realised I should just work inside a container.

Yeah, it's a game changer. Especially if you have different projects on the go. I'm used to having to deal with an ugly path with all kind of random things in it because I need them for one project. But, with containers / distroboxes / toolbx you can keep those changes isolated.

load more comments (3 replies)
load more comments (3 replies)
load more comments (14 replies)