Hello I’m Doctor_Rex I’m the OP of this post:

My Windows 10 install broke, but I’m hesitant to switch to Linux.

I’d like to start by thanking everybody who responded to my questions. Your answers have helped a lot when it came to my worries on switching to Linux.

I’ve taken in a lot of your recommendations: Fedora, Fedora Kinoite, Nobara, Bazzite Linux, VanillaOS,

I’ve decided on Fedora Kinoite, as it has everything I want from a distro.

It was very kind of you all to answer my questions but after making that post and reading your answers new questions propped up.

These questions are a little more opinionated than the last ones, and a little better thought out, but please take some time to answer them.

Questions:

  • Is Wayland worth using? Especially when you consider all the issues that may come from using an NVIDIA card.

Are there any real noticeable advantages/improvements to using Wayland over Xorg.

  • Does bloat actually matter or is it just a meme?

Does bloat actually have a noticeable negative impact on your system or are people just over reacting/joking.

  • What are some habits I should practice in order to keep my system organized and manageable?

Any habits or standards that I should abide by in order to save myself headaches in the future?

  • Any other resources besides the Arch Wiki that I should be aware of?

Self explanatory.

  • What do you wish you knew when you first started using Linux that would have saved you a headache in the future?

I’m not referring to some skill but instead something pertaining to Linux itself. Feel free to skip this question.

I’ll be going to sleep soon, so apologies if I don’t reply but please take a moment answer any questions you think you can.

Thank You!

Edit: AUR = Arch Wiki. Fixed a typo

  • @acockworkorange@mander.xyz
    link
    fedilink
    75 months ago

    One suggestion I haven’t seen addressed: use a filesystem with snapshots such as Btrfs and combine it with Timeshift.

    With Timeshift you’ll be able to roll back in time on your disk and undo stuff. It can take advantage of the lightning fast snapshots of Btrfs to do that.

    On Btrfs, separate your /home into a subvolume @home so that, when you do roll back, your personal files aren’t affected.

    Configure policies for daily and weekly snapshots on Timeshift. Don’t worry about space, they’re basically free.

    That way you can feel better experimenting with your setup, as long as the system is Bootable.

      • @acockworkorange@mander.xyz
        link
        fedilink
        25 months ago

        Heard great things about it. Mint doesn’t suggest it as default, but if you choose Btrfs during install, it will configure @home subvolume and snapshots for you, which is nice.

    • @scratchandgame@lemmy.ml
      link
      fedilink
      Tiếng Việt
      1
      edit-2
      5 months ago

      Split the filesystem to more partition.

      have a 1G /, 500M for /boot, have partitions for /usr, /usr/local (this isn’t used on linux so keep it small), /var, /home, and /tmp if you have little ram. Otherwise use memory-based filesystem (tmpfs), for /tmp I allocate less than 1/4 of my RAM.

      For partition size, refer to https://man.openbsd.org/disklabel.8#AUTOMATIC_DISK_ALLOCATION

      Remember to keep /usr/local small on most distro (perhaps I will allocate 5G), and increase /usr, create /opt too to prevent the disaster and allocate it the size for /usr/local. Don’t allocate all disk space, a 200G home is enough for most people and leave the rest unallocated. the formatting and fsck would be faster on smaller filesystem.

      And if you find other “cache” location, try log out and rm -rf the location, if login doesn’t break, I would mount tmpfs on that cache location too.

      • @acockworkorange@mander.xyz
        link
        fedilink
        15 months ago

        I actively discourage neophytes from fiddling with multiple partitions. It’s a layer of complexity that is unwarranted for them, and most users. Newbies can use a volume for home and another for the rest. Experienced users can split the system volume for the use cases you mentioned. And I don’t think having separate fixed size partitions like you suggested is a good idea for anyone on a desktop.

        • @scratchandgame@lemmy.ml
          link
          fedilink
          Tiếng Việt
          1
          edit-2
          5 months ago

          In my opinion newbies should learn what is called sane defaults. It’s a pity that almost every installer in the word except OpenBSD’s disklabel(8) cannot properly do automatic partitioning.

          And I don’t think having separate fixed size partitions like you suggested is a good idea for anyone on a desktop.

          UNIX’s removable filesystem is a BENEFIT, not a BUG. DOS and then Windows’ A: B: C: D: are BUGS.

          Why not take advantage of it. Microsoft always wanted a removable filesystem like UNIX. But they simply can’t get it.

          I would link another article that discuss about using a huge root partition for all: https://www.bsdhowto.ch/hugeroot.html

          https://marc.info/?l=openbsd-misc&m=154054091026039&w=3

          Avoid corrupting newbies’ partition is a way to keep them with Linux.

            • @scratchandgame@lemmy.ml
              link
              fedilink
              Tiếng Việt
              1
              edit-2
              5 months ago

              I’ve updated:

              new:

              UNIX’s removable filesystem is a BENEFIT, not a BUG. DOS and then Windows’ A: B: C: D: are BUG.

              Why not take advantage of it. Microsoft always wanted a removable filesystem like UNIX. But they simply can’t get it.

              (Those can’t admit this advantage often say “Linux and Windows are almost identical”…)

                • @scratchandgame@lemmy.ml
                  link
                  fedilink
                  Tiếng Việt
                  1
                  edit-2
                  5 months ago

                  You can create either logical volume or physical partition, but make sure you have different partition for different mount point: /, /usr, /usr/local (keep small on linux), /var, /opt (if you use), /tmp (if you have little ram or don’t want to use memory filesystem).

                  What do you mean by your comment.

                  I haven’t said something about logical volumes vs physical partitions.