To be clear, I don’t blame the poster of this comment at all for the content of their post – this is accepted as “common knowledge” by a lot of Linux sysadmins and is probably one of the most likely things that you will hear from one if you ask them to talk about swap. It is unfortunately also, however, a misunderstanding of the purpose and use of swap, especially on modern systems.

  • recursive_recursion [they/them]@programming.dev
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    3 months ago

    definitely agreed on against using swap as memory as much as you can especially since it can needlessly wear out your ssd (m.2 on most if not all on modern systems)

    allocating swap is still necessary as it provides features such as:

    • mitigating OOM scenarios (but doesn’t prevent them completely)
    • enabling system hibernation(suspend-to-disk)

    On my journey to learning Arch Linux I’ve personally tried:

    • 0 swap: which was pretty awful with constant unexpected system freezes/crashes
    • swap file: finicky but doable
    • swap partition: typical default/ol’reliable

    the last two doesn’t guarantee 0 problems as user errors such as allocating too much system memory to VMs can cause issues for the host system, but it does tend to mitigate the majority of issues that prevent the perception of system stability in comparison to Windows or Macs

    Resources:

      • recursive_recursion [they/them]@programming.dev
        link
        fedilink
        English
        arrow-up
        0
        ·
        edit-2
        3 months ago

        after a quick preliminary search,
        a couple of things I’ve found out:

        this might not necessarily be adopted by the mainstream desktop users, due to the nature of zram compressing data in addition to disallowing hibernation

        Hibernating to swap on zram is not supported, even when zram is configured with a backing device on permanent storage. logind will protect against trying to hibernate to a swap space on zram.

        • data compression by nature incurs dataloss so there are both pro & con tradeoffs to which should be communicated to the user otherwise they might receive an unnecessary worse user experience:
          • “why is my computer so buggy?”
            • (the system is working as it’s coded but not working in they way the user expects it to)
              • this would be unfortunate as they might leave back to Windows or MacOS
          • I could be completely wrong about this, if so please comment or disregard this section entirely

        to me atm; zram seems great for server based systems rather than for desktop users’ systems


        one other method for zram mainstream adoption is to encourage an eccentric system that I’m currently using, which is to have the host system only contain minimal packages to run Virtual Machines:

        • zram compression might be fine as the main services/programs are run within their relevant and/or separated VM containers
          • this simultaneously achieves:
            • Wikipedia - Separation of Concerns
            • enhanced security as the host is further firewalled/bubblewrapped from the guest like Flatpaking/containerization (and malware is less likely to activate due to malicious users being unhelpful in letting their programs run in a VM 😢🤗)
        • hibernation can still be achived by save-stating VMs (VM restoration at will basically achieves hibernation so it doesn’t really matter if the host is shutdown so long as all VMs are saved by the user before host shutdown)

        sorry for the long comment!
        stuff like this interests me the most so I’ve spent a lot of time in learning and tinkering around🤗

        • voodooattack@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          3 months ago

          data compression by nature incurs dataloss

          What? It’s not a jpeg file. It’s a lossless compression algorithm.

          • AnUnusualRelic@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            3 months ago

            Speak for yourself, my compression algorithm works by discarding every third byte. I figure it’s good enough for most use cases.

  • 4wd@programming.dev
    link
    fedilink
    arrow-up
    0
    ·
    3 months ago

    I’ve never understood why GNU/Linux actually needs swap. Okay, I created a 4G partition for it, having 32G of RAM. I never used all that RAM, but even so, stuff regularly ends up in swap. Why does the OS waste write cycles on my SSD if it doesn’t have to?

    However, if I artificially fill up all 32G of RAM, the system almost completely freezes faster than switching to using swap as a “lifeline”. And it only comes back to life when OOM Killer finally remembers its existence and kills some f__ing important process.

    • DefederateLemmyMl@feddit.nl
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 months ago

      I’ve never understood why GNU/Linux actually needs swap

      It doesn’t. It’s just good to have in most circumstances.

      Also, sidenote: “GNU” doesn’t apply here. Swapping is purely kernel business, no GNU involvement here.

      Okay, I created a 4G partition for it, having 32G of RAM. I never used all that RAM, but even so, stuff regularly ends up in swap. Why does the OS waste write cycles on my SSD if it doesn’t have to?

      Physical memory does not just contain program data, it also contains the filesystem cache, which is also important for performance and responsiveness. The idea is that some of the least recently used memory pages are sometimes evicted to swap in favor of more file caching.

      You can tweak this behavior by setting the vm.swappiness kernel parameter with sysctl. Basically higher values mean higher preference for keeping file backed pages in memory, lower values mean higher preference for keeping regular memory pages in memory.

      By default vm.swappiness = 60. If you have an abundance of memory, like a desktop system with 32G, it can be advantageous to lower the value of this parameter. If you set it to something low like 10 or 1, you will rarely see any of this paradoxical swap usage, but the system will still swap if absolutely necessary. I remember reading somewhere that it’s not a good idea to set it to 0, but I don’t remember the reason for that.

      Alternatively, there is no rule that says you can’t disable swap entirely. I’ve run a 32G desktop system without any swap for years. The downside is that if your 32G does run out, there will be no warning signs and the OOM killer will unceremoniously kill whatever is using the most memory.

      tl;dr just do this:

      sysctl vm.swappiness=10
      echo "vm.swappiness=10" > /etc/sysctl.d/99-swappiness.conf