this post was submitted on 17 Sep 2024
73 points (96.2% liked)

Linux

47356 readers
1377 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
 

This might be the dumbest stuff anyone has asked here, but has anyone tried running Alpine as a desktop base OS? Seems pretty well stocked when it comes to the repo, and it's light asf.

Thoughts?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 6 points 1 day ago (1 children)

I almost feel bad that I haven't. I've used their documentation for years but never installed the distro. Most recently I've been having fun with NixOS.

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

I wanna get into Nix but I keep bouncing off the documentation every time I try to study it

[–] [email protected] 3 points 1 day ago (1 children)

I currently use NixOS and nix-darwin, and I've enjoyed the ride so far. I use flakes with direnv for reproducible development environments, and this has been working out well. I've also been impressed with using Nix to build OCI containers.

The learning curve isn't flat, but the ecosystem is fantastic.

[–] [email protected] 1 points 23 hours ago (1 children)

Makes sense; one of the big things about it that interests me is the dockerfile generation. Although, I should probably get a better understanding of dockerfiles themselves before jumping into that; I have a habit of forgetting the order of carts and horses

[–] [email protected] 3 points 20 hours ago

Dockerfiles act as instructions for the docker (or compatible) CLI to use for building OCI container images. Images may or may not have layers and can be exported as a tarball for inspection (with tools like dive).

Nix provides native support for building container images, and the resulting archive must be loaded using docker load. There is another library (nix2container) that aims for better performance and relies on skopeo for copying the built image to a docker-compatible server, local or remote.

Just wanted to share a some of the information I've learned. Cheers!