Seen a few times bazzite has been mentioned, but just have seen another user say they have OpenSUSE installed.

I’m not sure what the benefits of these options are, especially non-steamOS ISOs?

  • DeadMartyr@lemmy.zip
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    I’m a cs student rn and there’s a lot of stuff that I’m learning specifically with UNIX and Linux related things. I use my steamdeck as a daily driver (literally sit in the front of class, pull out my steamdeck with my jsaux case and Bluetooth keyboard/mouse combo)

    There’s some issues with the walled garden. The way they do system updates is basically by having system stuff on its own partition and overwriting it. It functions well for a “casual” person that doesn’t care about linux that much.

    The issue is that I have to install things sometimes. Even things as simple as an OpenVPN package so I can use my nordvpn. Updates sometimes will wipe things I install in package manager. Other things (like Xelatex) are simply too big to fit in this partition so I have to install lighter packages even if I want to use the whole thing (Math formulas need a LOT of symbols).

    This has actually led me to see if it’s worth it to install a third party OS. Bazzite was a good contender but I like Arch with the KDE desktop so ultimately I would just want a steamOS that I could install more things on.

    Currently I’m looking into how I can achieve this. I don’t know if I should just enlarge the partition holding the system files, or if there is some pacman settings that I could have packages installed elsewhere and automatically symbolically linked in /user or wherever it needs

    • towerful@programming.dev
      link
      fedilink
      arrow-up
      1
      ·
      4 months ago

      As someone that runs servers, having an immutable os (oe one that “wipes” on updates) is awesome.
      The issue is that you are not in control of the config.

      Learning to script over it might be worthwhile. Update, apply customisation script, back to normal.
      It’s good to learn declarative configuration

    • rklm@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      4 months ago

      I also use my steam deck as my daily driver (dockcase 10 in 1 with peripherals etc).

      I had been using arch for years before I got the steam deck, and for the first 8 months or so I unlocked the btrfs partition and installed everything I needed normally (kvm/qemu, devel libraries and Linux headers for c++ development, etc)… But every update from valve would destroy my environment and I had to run custom scripts to fill my etc directory back in…

      For the past many months I’ve been using distrobox (which I believe comes pre-installed on the latest steamdeck updates) with a rootless arch environment inside, and flatpaks for everything that requires systemd.

      You can symlink things like xdg-open from inside the container to your host, and end up with a pretty seamlessly integrated experience (distrobox does a lot of this for you anyway, and comes with utilities which make this pretty easy.)

      If you want direct control of the system, this is not going to be a convenient setup, but if you’re interested in treating it like an immutable OS, there are userspace ways of getting around it’s limitations.

      SteamOS has inspired me to make future installs immutable (and atomic/declarative using containers?), because it can be kinda nice once you get used to it.

      I hope this helps or was interesting!

      Edit: This is specifically what I meant by symlinking xdg-open.

      Idk if this is done by default now, but if link handling is broken this is how you fix it