• DarkAri@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    2
    arrow-down
    9
    ·
    15 hours ago

    If you are new I suggest bazzite, and get lutris to install windows apps outside of steam. It takes care of most of the stuff and to install software, on bazzite you use “sudo rpm-ostree install <package name>” and then reboot because bazzite uses an ostree system, or just get it in a flatpak if available. Between bazzite and knowing how to install packages outside of the flatpak repository, that should cover most of your bases for a few years and you can learn other stuff when you have the inclination. ChatGPT is really knowledgeable about Linux since it’s open source. It’s often much faster than digging through forums just be specific when you speak to it.

    Also if you get your setup in a decent shape, you can shrink the partition and image it with dd with a single command, and then compress it to have a full system backup, which is basically your own image. Then you just write it back with a program like etcher later if you screw up your system and then just reexpand the partition to the full drive. If you get bazzite though you won’t have much need to use the terminal or install anything outside flathub which will keep you from breaking the system. Also update the system occasionally, to get security fixes once a week or two is probably fine if you don’t have open ports to run a server and aren’t running random software.

    • Hemingways_Shotgun@lemmy.ca
      link
      fedilink
      English
      arrow-up
      21
      ·
      14 hours ago

      Is this satire?

      Seriously, if I was new to Linux, coming from Windows, asking for a cheat sheet or Linux for dummies manual, everything you wrote would sound like absolute gibberish to me.

      If this was someone’s response to me when asking for advice I’d immediately reinstall windows where at least (from the perspective of a typical end user) they speak words that make sense.

      • dev_null@lemmy.ml
        link
        fedilink
        arrow-up
        6
        ·
        10 hours ago

        Also suggesting a gaming distribution to someone that gave no indication plays video games at all…

      • DarkAri@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        3
        arrow-down
        1
        ·
        9 hours ago

        It’s the easiest way to get into Linux if you need good GPU support and I assume most people play video games. Bazzite is what finally got me into Linux because it mostly just worked out of the box which is something most Linux distros I tried before that never did. I would always end up breaking them in a day or two trying to get the GPU driver installed or something. Bazzite is really good for beginning users. Not the greatest for mid tier when you are trying to gain a deeper understanding because it replies heavily on containers and file system overlays.

        Also you have to remember that for people who aren’t ultra Linux nerds. It’s an incredible amount of work to get Linux to work. It’s often days of painful configuration and research per machine. This, and a lack of gaming support is the main reason I think most people avoid Linux, which is why I suggest bazzite, as the shit just works distro.

    • MrScottyTay@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      7
      ·
      14 hours ago

      You shouldn’t ever use rpm-ostree to install stuff with, as it can cause issues with future system updates.

      First port of call should be flatpaks in the bazaar.

      Second, look for flatpaks or appimages online.

      Third, use distrobox to install something via a different distro and export it as a shortcut to bazzite. I use arch in a distrobox, btw.

      • DarkAri@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        2
        ·
        9 hours ago

        It seems to be okay for me, there is maybe a handful of things I install, and I don’t want fedora so much as that’s what bazzite is built on. If it breaks I’ll just move on as I’m getting a bit more familiar with Linux. I will probably install Debian or mint or something with a much more simple file system when this one breaks.

        • MrScottyTay@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          1
          ·
          4 hours ago

          Even though bazzite is fedora-based you’re not really meant to interact with the fedora side of it all. At least that’s the impression I’ve gotten from it.

          • DarkAri@lemmy.blahaj.zone
            link
            fedilink
            arrow-up
            1
            ·
            4 hours ago

            I dont think it matters really for installing little programs. You probably shouldn’t change your kernel or something. When you update the system it’s just using rpm-ostree and doing a standard update through the repos, then it updates flatpaks. On the steamdeck since it’s arch it will break pretty easily if you update the wrong thing, but bazzite is built in fedora.

            The rpm-ostree systems is also good for anything that breaks because it’s basically a snapshot system. Everytime you install something or update it creates a snapshot of your old working install which you can easily roll back to if anything breaks. You could use containers for stuff but that’s not really necessary. It does probably make the system more stable in ways but then you have to deal with the headaches of using containers and having everything isolated from each other. For web services though containers are worth it as it greatly increases the security of the system.