I currently use Windows 10 and I’d like to try out Linux. My plan is to set up a dual boot with OpenSUSE tumbleweed and KDE Plasma. I’ve read so many different opinions about choosing a distro, compatibility with gaming and Nvidia drivers, and personal issues with the ethos of different companies like Canonical. I value privacy and I’d rather avoid a Linux distro that’s implementing something like ads or telemetry…if that’s even a thing that’s happening?

As a complete beginner, what sort of advice would you all have for me? Should I avoid OpenSUSE or KDE Plasma for some reason? Are there any ‘10 things to do first when installing Linux for the first time’ recommendations?

Despite all the ‘beginner friendly’ guides and tutorials around, I still feel a little lost and like I’m going into this blind.

EDIT: Thanks to everyone who’s offered advice, I really appreciate all the help and the patience with my dumb questions! There’s a lot to look through and it’s been a busy day for me, but I’ll get back to reading through everything and replying as soon as I can!

  • Free Palestine 🇵🇸
    link
    fedilink
    37 months ago

    I’d rather avoid a Linux distro that’s implementing something like ads or telemetry…if that’s even a thing that’s happening?

    Fedora has some telemetry, but as far as I know, you can turn it off during the installation. Some desktop environments like KDE Plasma also have options for telemetry but it’s disabled by default. If you want it, you manually have to enable it in the settings.

    Should I avoid OpenSUSE

    Some software might not be available on openSUSE

    or KDE Plasma

    Not really, Plasma has a shitload of features and customization options, if many options tend to overwhelm you, you might be better of with a different desktop environment, if you are fine with customization options, Plasma is great for you.

    Are there any ‘10 things to do first when installing Linux for the first time’ recommendations?

    Since you said that you want to install openSUSE, I recommend this video: https://youtube.com/watch?v=ajVqJ1nl9bM

    • @NokinoriOP
      link
      37 months ago

      Why would some software not be available on OpenSUSE? Would it be available on other distros due to a different way they handle packages, or do you mean in comparison to Windows?

      • @TheMissingBit@lemm.ee
        link
        fedilink
        37 months ago

        I’ve been using openSUSE for a while now and haven’t come across any software that was not available for it. Doesn’t mean it doesn’t exist, but I wouldn’t worry about it. It’s a pretty good OS in my opinion.

      • Free Palestine 🇵🇸
        link
        fedilink
        27 months ago

        openSUSE is rather small, not everything is packaged for it. Arch is the best in terms of software availability, thanks to the AUR.

        The only distro that even comes close is NixOS, but I really wouldn’t recommend it for beginners. You can explore it in a VM though or maybe at some point actually try it out. It’s very very different than other distros though.

        • @d3Xt3r@lemmy.nzM
          link
          fedilink
          4
          edit-2
          7 months ago

          Nix (Nixpkgs) actually exceeds the AUR in the number of packages, according to this page.

          And the nice thing about it is that you don’t even have to be on NixOS to use it - in fact, NixOS came much later. Nix started out as a distro-independent package manager, and can still be used that way, because Nix packages do not interfere with your system’s packages.

        • @NokinoriOP
          link
          27 months ago

          Ok, let me see if I’m starting to understand.

          If something is packaged for a disto, then I can download it using the package manager and it should theoretically be compatible with the distro and the other packages available through the package manager. But if something isn’t available via the package manager, I could still find it online and download and install it, but it might cause issues because it hasn’t been verified by the people who maintain the distro’s package manager accessible repositories. Or I could still install it with flatpaks or snaps and something something container and it should still work? Or might cause compatibility issues?

          And you’re saying that AUR has more packages that have been verified for arch than OpenSUSE has with Yast?

          Did I get all that right?

          • @d3Xt3r@lemmy.nzM
            link
            fedilink
            3
            edit-2
            7 months ago

            But if something isn’t available via the package manager, I could still find it online and download and install it, but it might cause issues because it hasn’t been verified by the people who maintain the distro’s package manager accessible repositories.

            Correct. The usual issues that you’d find is missing libraries or other package dependencies, because the versions/packages on your OS may not match what the developer complied their generic release package with. Which is why you normally don’t download random apps from the web like you’d do on Windows, becuse there’s no guarantee that it’d work on your distro (not to mention the security concerns).

            Or I could still install it with flatpaks or snaps and something something container and it should still work? Or might cause compatibility issues?

            Correct, Flatpak/Snap was invented for this very reason, to solve the library mismatch and dependency issues you might get. Flatpak/Snap works by bundling all the necessary dependencies a program might need, so it doesn’t matter what your OS has. There are some issues with Flatpaks/Snaps, but these are rare and usually they come about due to the sandboxing (Flatpak/Snaps typically don’t have full system access, but “just enough” to get things working. You can manually configure the permissions though if you need to give an app more/specific permissions).

            AUR has more packages that have been verified for arch than OpenSUSE has with Yast?

            * “packaged”, not “verified”, but yes being packaged for a particular distro usually implies that it works, but that’s not always the case. Btw, YaST is just a system config tool, not a repo. OpenSUSE’s default repos do indeed have fewer packages compared to AUR, but that’s an unfair comparison since the AUR isn’t even enabled by default on Arch, it’s something you’ll manually need to enable and even get a third-party package manager like yay/paru etc to access it. OpenSUSE also has third-party repos like Packman, and even an online Software Portal that can be used to search for and install package from several official and unofficial repos. So technically speaking you could probably find everything you need on OpenSUSE (it’s hard to get an exact package count to compare), but I guess it’s not as easy/convenient as simply using the AUR on Arch.