• Buffalox@lemmy.world
      link
      fedilink
      arrow-up
      1
      arrow-down
      1
      ·
      20 hours ago

      OK thanks apparently OpenRC is a further development of Sysvinit, having many similarities.

      https://en.wikipedia.org/wiki/OpenRC

      Parallel service startup (off by default)

      This is probably because it’s still hard to get to work without handcrafting for a particular system, IMO a very telling difference between the old init designs contrary to systemd that handles parallel startups like a champ.

      • black0ut@pawb.social
        link
        fedilink
        arrow-up
        2
        ·
        12 hours ago

        In my experience, booting using single threaded inits (at least in their early stages) actually speeds up the process. The overhead from multithreaded startup on something as simple as an init system can hurt startup performance, especially on older CPUs.

        • Buffalox@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          7 hours ago

          Of course you need a CPU capable of multi threading, which today means any CPU, but then there is no doubt that the multithreaded init process is way faster.
          This was thoroughly tested when systemd demonstrated it.
          Single threaded init processes have bottlenecks, and a single issue will stall the whole process. Of course systemd only influence boot speed of user space, but the Linux kernel itself is also multithreaded in it’s boot processes today, because it is without a doubt faster.