this post was submitted on 06 Aug 2023
69 points (86.3% liked)

Linux

45530 readers
1083 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

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?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 9 points 11 months ago (2 children)

nixos is a personal love of mine.

[–] [email protected] 3 points 11 months ago (2 children)

But it's source-based (with a binary cache)

[–] [email protected] 5 points 11 months ago

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

[–] [email protected] 1 points 11 months ago (1 children)

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

[–] [email protected] 2 points 10 months ago (1 children)

but with a simple --substitute false you can make it compile on install. I love nix

[–] [email protected] 1 points 10 months ago (1 children)

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!

[–] [email protected] 2 points 10 months ago* (last edited 10 months ago)

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.