TLDR:
Windows 11 v24H2 and beyond will have Recall installed on every system. Attempting to remove Recall will now break some file explorer features such as tabs.

YT Video (5min)

Invidious Link

Original Github Issue

  • vxx@lemmy.world
    link
    fedilink
    English
    arrow-up
    54
    ·
    10 hours ago

    Man, I cling to Windows like nobody else, as I didn’t have any advertising issues and such, but this will be the final straw.

    It’s already enough of a spying system but I refuse to have it as a spy on crack.

    Time to read into distros.

    • Corr@lemm.ee
      link
      fedilink
      English
      arrow-up
      6
      ·
      4 hours ago

      There’s plenty to read up on but I think starting with any is a good place. You’ll find stuff you dislike. I’d recommend setting up ventoy on a USB (it will let you have several linux images on one thumb drive) and testing out most importantly the desktop environment (DE).

      Main ones being KDE, GNOME, and cinnamon that comes with Mint (which is a great first distro to test).

      If you end up having questions feel free to DM me

    • 0x0@programming.dev
      link
      fedilink
      English
      arrow-up
      12
      ·
      7 hours ago

      Linux Mint seems to be one of the most recommended for newcomers.

      “Burn” the ISO on an USB drive, boot live from it and give it a try.

      • TrousersMcPants@lemmy.world
        link
        fedilink
        English
        arrow-up
        6
        ·
        5 hours ago

        I personally recommend Linux Mint. It feels just close enough to Windows to be fairly comfortable to use. Customizing the task bar on Cinnamon still feels weirdly awkward and confusing though.

        • sugar_in_your_tea@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          1
          ·
          50 minutes ago

          I don’t use it, but I recommend it to every newcomer and I’ve had great feedback that it’s easy to get started with. There’s a lot of help available online, and almost anything Debian or Ubuntu-related should apply, most of the time.

          Once you get a feel for Linux Mint, you can decide where to go from there. But the most important part is to get a usable system first, and Mint makes that really easy, without some of the drawbacks of Ubuntu.

          I recommend the Debian edition, but honestly, any of their spins are fine, pick one that looks cool and have at it.

    • boonhet@lemm.ee
      link
      fedilink
      English
      arrow-up
      40
      arrow-down
      1
      ·
      edit-2
      9 hours ago

      As far as Linux distros are concerned, really, any distro is just a package manager with repos and a set of default utilities. Essentially, a distro is an opinion on how you should use your system, not a law. Now prepare for my ADHD-fuelled stream of consciousness (which I wrote instead of getting any work done, yay):

      Stay away from Arch and Gentoo for your first distro. These are basically meme distros, especially Gentoo. They allow for a lot of flexibility and building a really minimal install, but come with install-time complexity you really don’t need. Try them later on if you’re interested. Stay away from nixOS for now too, although it’s also awesome.

      Package managers

      Essentially, you have two main packaging types: RPM (used by Fedora/RedHat’s dnf, previously yum and (Open)SuSE’s zypper) and deb (used by apt mostly, dunno if others).

      Either one is fine, but I think you’ll probably find more software available as debs. But the difference barely exists and with GUI apps you can usually install a flatpak anyway (more on this later).

      Deb

      Everything deb/apt comes from the Debian lineage.

      You have Debian, the granddaddy of stability, releases come every few years and are tested thoroughly. After package freeze, only bugfixes and security updates usually get added. Then you have Ubuntu, a fork of Debian with more frequent releases as well as Long-Term Support releases every 2 years. Ubuntu used to be the most recommended beginner distro, but it’s no longer the case - not just because it has ads in it, but also because it pushes Snaps over Flatpaks AND occasionally tries to force Snaps over regular packages (again, more on this later).

      Then, much like Ubuntu has forked Debian, others have forked Ubuntu. There’s Linux Mint - used to have the same release cadence as Ubuntu, but now they only base their releases off Ubuntu LTS versions. Really, it’s Ubuntu without all the commercial stuff Ubuntu’s been pushing. And they maintain their own desktop environment(s), but you can get those elsewhere too. There’s also Pop!_OS which is developed by System76, a laptop manufacturer. It used to come with its’ own customizations on top of Gnome, but now they’re creating their own desktop environment altogether, which is currently in Alpha 2. And then there’s KDE Neon, which is also based on Ubuntu LTS, but it ships the latest version of KDE Plasma desktop environment, rather than whatever version is in the latest Ubuntu LTS.

      Rpm

      On the rpm side, you mostly have two families for non-enterprise users: Fedora, which has a similar release cadence to Ubuntu, but apparently keeps packages more up to date between releases and OpenSuSE, which has Leap (new versions every year, with critical bugfixes and security updates in the meantime) and Tumbleweed, which is rolling release, so you just get the latest version of every package that has been tested, rather than having to wait for a new release. Tumbleweed gets updated just about every day. There’s also Slowroll, which gets big updates monthly, but can still get bugfixes between those.

      Desktop Environments

      For just about any distro, you can get just about any desktop environment. Ubuntu and Fedora default to Gnome. KDE Neon is pretty much just meant to be used with KDE Plasma. Pop!_OS defaults to customized Gnome unless you get the alpha version of the new COSMIC desktop. OpenSUSE defaults to KDE Plasma.

      For Ubuntu you get variants like Kubuntu, Xubuntu, Lubuntu, etc, for whatever desktop you want, or you can switch alter (apt install kubuntu-desktop for an example). For Fedora, you can get a Fedora Spin, like Fedora KDE Spin for an example. Or you can similarly switch: dnf install @kde-desktop-environment. Same goes for all of them, really.

      Desktop environments: The two big ones are KDE Plasma (close to Windows in default appearance, but a lot more customizable, and more functional straight out of the box) and Gnome, which as of Gnome 3 is just… unique, I guess. It’s different. Then on the “Help I’m running this on a computer from 2004” side you have things like XFCE and LXQT. (Xubuntu, Lubuntu get their names from these). Those work just fine too, just a bit less eye candy. There are a lot more of less mainstream ones like Budgie or Enlightenment, but you can worry about those later.

      Sandboxed applications - Flatpak, Snap

      Now, why did I mention Flatpaks and Snaps earlier? Those are sandboxed package managers. A package comes with a sandbox of its’ own, and Flatpak or Snap keeps a copy of all the libraries it depends on, instead of using system libraries. This means that 1) There’s never a version conflict between what’s installed on your system and what the application uses and 2) You have multiple copies of some libraries (Flatpak and Snap both I think do try to deduplicate though so if two applications use the same version of a dependency, it keeps one copy stored). 3) You can install applications your distro doesn’t even have a package for.

      Both also keep system resources out of reach of the applications, so they’re more secure to some degree if you don’t trust an application. This comes with limitations, too - sometimes you NEED your application to have access to something that’s limited in Flatpak or Snap. You can sorta fix this with flatseal for Flatpak, but it’s not perfect.

      The real problem with Snap, besides having a proprietary backend vs Flatpak where you can use either Flathub or another application store with it, is that Ubuntu is starting to force it upon you - including for applications you may not want to run in a sandbox at all. You’ll run apt install firefox and it’ll play a trick on you and install the Snap instead of the deb. You lose some control over your system and how you use it. You can override this, but it’s possibly more work than you’d want to take on as a brand new Linux user.

      At the end of the day, I recommend using either OpenSuSE Tumbleweed (if you want latest and greatest always), Fedora, Linux Mint, or Pop!_OS. If you really want the latest and greatest KDE Plasma and don’t want Tumbleweed, then KDE Neon might make sense for you.

      • sugar_in_your_tea@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        1
        ·
        34 minutes ago

        OpenSuSE

        As an openSUSE user, I want to also point out that you can upgrade from Leap -> Tumbleweed really easily, so I highly recommend starting with Leap and upgrading to Tumbleweed later once you get a feel for the system and want something a little more exciting and up-to-date.

        That said, I don’t recommend openSUSE for a new user unless you’re in Europe, because there just isn’t a huge userbase or single community I can point at. Support is high quality, when you can find it, but quite a bit less plentiful vs Fedora. That said, SUSE is huge in Europe, so you could probably find a lot more non-English language support.

        So if you’re sold on an RPM distro, I recommend Fedora, not because openSUSE is bad, but purely based on community support. That said, my primary recommendation is Linux Mint due to community size and proximity to Debian (which also has a huge community).

        OpenSUSE defaults to KDE Plasma.

        That’s not really true, it asks you in the installer which one you want. However, most openSUSE users seem to recommend KDE, so you’ll probably get the best help with that desktop (and it’s what I use, now that Wayland support is pretty good).

        At the end of the day, I recommend

        I differ a bit. Here’s what I recommend:

        1. Linux Mint
        2. Fedora
        3. Debian
        4. openSUSE Leap -> Tumbleweed (start w/ Leap, upgrade to Tumbleweed later)
        5. Pop!_OS

        I use openSUSE, but put it lower due to limited community support. It’s the perfect distro for me, and I love the different spins it has. I currently use Leap for servers and Tumbleweed for desktop/laptop, and I plan to transition to microOS for servers.

        Arch

        I don’t see Arch as a meme, I think it’s a fine distro and I used it for several years. However, I don’t think it should be anyone’s first distro, or even second, not because it’s hard or complicated (it’s remarkably simple), but because it doesn’t really have any guardrails, so whether you have a good or bad experience with it depends more on you than the distro itself.

        That said, don’t use Manjaro, it’s not “easier Arch” or “safer Arch,” in fact I think it has way more problems than Arch does. If you want an easy install option, I recommend using something else first. If you are familiar with Arch, then use something like EndeavorOS so you don’t need to do all the setup, but as a first time user, I recommend using Arch’s official install process instead.

      • KubeRoot@discuss.tchncs.de
        link
        fedilink
        English
        arrow-up
        4
        arrow-down
        2
        ·
        4 hours ago

        Calling Arch a meme distro is unnecessarily insulting. I imagine the same applies to Gentoo, but I haven’t used it myself. It’s an enthusiast distro, for people who want to have control over how their system is set up while accepting the responsibility of having to set everything up.

        I absolutely agree with recommending against it for somebody’s first experience - but if you’re willing to read through the guides and troubleshoot issues, you can learn a lot about how things work on Linux. It’s the kind of distro where you will have issues, and they will usually be due to your own mistakes.

        • boonhet@lemm.ee
          link
          fedilink
          English
          arrow-up
          1
          ·
          edit-2
          2 hours ago

          I categorized them as meme distros because you’re going to spend more time getting things just right than actually using your computer, at least for a while. In fact you could say my favourite games to play on Gentoo were the Portage package manager and nano. Yes, I used it on my gaming PC.

          • GHiLA@sh.itjust.works
            link
            fedilink
            English
            arrow-up
            1
            ·
            54 minutes ago

            The only thing that makes Arch harder to install than Debian is that you have to type “arch install” and hit enter instead of clicking on “install” using a mouse cursor.

            It ain’t 2012 anymore.

      • Buffalox@lemmy.world
        link
        fedilink
        English
        arrow-up
        10
        ·
        8 hours ago

        A distro is way more than just package managers, it’s also the level of testing before deployment, and a shitload of configuration and design decisions.

        That said, everything from one distro can generally be configured to work like it does in another distro, but it’s not always easy.

        If you want to try Linux, jump right into it, if there’s something you don’t like, maybe another Distro or DE has fixed that exact thing, and it’s easy to swap.

        • Valmond@lemmy.world
          link
          fedilink
          English
          arrow-up
          2
          ·
          6 hours ago

          Ya, also you can just check them out on a “live” thumbdrive, say put Linux mint or whatever distro on a thumbdrive, boot from it and see if you like it. If you don’t, just remove the thumbdrive and reboot, no harm done.

      • BaroqueInMind@lemmy.one
        link
        fedilink
        English
        arrow-up
        6
        arrow-down
        14
        ·
        edit-2
        6 hours ago

        Don’t tell people to stay away from Arch. It is not a god damned meme OS, hell even the Steam Deck production OS is built on Arch.

        It’s installer is as easy to use as the other shit you recommended if you can fucking read and follow directions, but skips the unnecessary installer UIs that hand-hold (which requires just as much reading and direction following, difference is the others have a toddler-appealing colorful UI).

        If old MAGA Boomers can handle text terminal DOS installs with floppy disks, a contepmorary dumbfuck Windows user will be fine too.

        • boonhet@lemm.ee
          link
          fedilink
          English
          arrow-up
          5
          ·
          3 hours ago

          I used Gentoo for gaming for 2 straight years. I’m not a complete newbie. I’m still not going to recommend Arch or Gentoo for anyone’s first distro.

          There’s a reason most distros come with a set of reasonable defaults. It’s so that you’re not left wondering “how the fuck do I get wifi working from the command line?” before you’re ready to tackle this issue.

          Most people also want their computers to just work. They don’t want to fiddle around with it to get it just right.

        • flashgnash@lemm.ee
          link
          fedilink
          English
          arrow-up
          13
          ·
          5 hours ago

          You make a compelling argument why not to use arch in calling windows users dumbfucks and swearing every 3 words in your reply lol

          • BaroqueInMind@lemmy.one
            link
            fedilink
            English
            arrow-up
            4
            arrow-down
            6
            ·
            edit-2
            5 hours ago

            What’s wrong with swearing?

            And full disclosure, I’m a member of the dumbfuck Windows user group to play my PC games in Steam.

            • flashgnash@lemm.ee
              link
              fedilink
              English
              arrow-up
              1
              ·
              1 hour ago

              Nothing wrong with swearing in general, but you’re using it in a needlessly hostile way

              My point is that the arch community in general is very hostile to new and non technical users, I don’t think many would disagree

              Also, why still use a windows PC? Unless you play valorant, Fortnite etc proton is 99% there imo, haven’t had a windows machine in a year or so and I very rarely have any issues

            • morriscox@lemmy.world
              link
              fedilink
              English
              arrow-up
              2
              ·
              3 hours ago

              Profanity is meant for very strong negative emotion. Using it casually robs it of most of its value.

    • JaggedRobotPubes@lemmy.world
      link
      fedilink
      English
      arrow-up
      18
      ·
      9 hours ago

      I’m in the exact same boat as you.

      After ten hours of research you will have learned that Linux Mint with Cinnamon is the one you’re looking for, for an intro. Widely used, familiar, stable.

      Feel free to read a bunch to confirm.

      • Zink@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        4 hours ago

        It’s a great intro AND a great one to stick with. It is basically Ubuntu, the most popular distro(which is built on Debian), minus the controversial Canonical stuff, plus some additional conveniences and polish.

        If I switched from Mint to Arch it wouldn’t really affect how I use my PC unless it broke functionality. 95% of usage is in terminal, Firefox, or vscode. And that includes browser-based M365 work apps.

      • illi@lemm.ee
        link
        fedilink
        English
        arrow-up
        12
        ·
        9 hours ago

        Seconded. Linux Mint is really comfy and intuitive coming off of lifetime of Windows

    • barnaclebutt@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      edit-2
      2 minutes ago

      The transition is really not difficult. A distribution like Xubuntu (XFCE+Ubuntu) is very easy. Everything should work out of the box.

        • 0x0@programming.dev
          link
          fedilink
          English
          arrow-up
          2
          ·
          7 hours ago

          Low on resources? My old hardware is interested. Which others would you recommend?

          • barnaclebutt@lemmy.world
            link
            fedilink
            English
            arrow-up
            1
            ·
            5 hours ago

            Arch if you know what you’re doing. It’s what I use, but my machine is pretty beefy. I’ve used xubuntu on the mini PC attached to my TV for about 6 years without a hiccup.

              • skillissuer@discuss.tchncs.de
                link
                fedilink
                English
                arrow-up
                2
                ·
                edit-2
                6 hours ago

                You might be semi-comfortably running linux mint cinnamon on these (assuming 4gb ram) with xfce you’re trading clunkiness and ancient looks for lower memory usage

                no idea about the usual suspects, wifi, bt, graphics probably will require tinkering as is tradition