• tomatoely@sh.itjust.works
    link
    fedilink
    arrow-up
    16
    ·
    5 days ago

    Support for larger 32-bit x86 systems (those with more than eight CPUs or more than 4GB of RAM) has been removed.

    What? How do you get more than 4GB of ram on a 32-bit CPU architecture? Now I need to know what kind of black magic they used for that

    • WereCat@lemmy.world
      link
      fedilink
      arrow-up
      9
      ·
      5 days ago

      I vaguely remember something for Windows XP that allowed me to run more than 4GB RAM on 32-bit…

    • KubeRoot@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      5
      ·
      5 days ago

      I think the trick might be that nothing is stopping you from using more than one 32-bit integer to represent addresses and the kernel maps memory for processes in the first place, so as long as each process individually can work within the 32-bit address space, it’s possible for the kernel to allocate that extra memory to processes.

      I do suppose on some level the architecture, as in the CPU and/or motherboard need to support retrieving memory using more than 32 bits of address space, which would also be what somebody else replied, and seems to be available since 1999 on both AMD and Intel.

    • SteveTech@programming.dev
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      5 days ago

      My understanding is previously the kernel would crash on systems with more RAM than the address space, so there’s now a patch to ignore the anything above the max address supported (e.g. 32bit without PAE, 36bit with PAE). More RAM was never supported, so I think the author of the article has misunderstood or oversimplified what’s been done.