I’ve installed arch Linux and liked it, but lfs and Gentoo would be too time consuming compiling everything and not doing anything during and after install. Are there any distros like arch that don’t have me compiling everything?

      • choroalp@programming.dev
        link
        fedilink
        arrow-up
        7
        arrow-down
        1
        ·
        11 个月前

        It takes like 10 seconds to install a package. Get benefits of Source based distros while still being fast af + No dependency hell

      • Eufalconimorph
        link
        fedilink
        arrow-up
        3
        ·
        11 个月前

        That binary cache means you don’t have to compile anything the distro provides. Same as any binary distro.

          • Eufalconimorph
            link
            fedilink
            English
            arrow-up
            1
            ·
            11 个月前

            Yes, or if you override something you’ll compile that thing and anything depending on it. If you override glibc, you’ll recompile pretty much the entire system!

            • zwekihoyy@lemmy.ml
              link
              fedilink
              arrow-up
              2
              ·
              edit-2
              11 个月前

              true, --substitute false will compile all dependencies, down to the compiler itself, but a simple (/s)

              nix-build "  " [package] --check
              

              will compile just the chosen package, skipping dependencies, and compare it against the cached binary in the repo to ensure they’re equivalent.

              I could have gotten that nix-build command slightly off as I’m typing this from memory. I am also saying most of this in jest as they aren’t really solutions to anything mentioned above and I moreso find them interesting features.