this post was submitted on 09 Apr 2024
314 points (98.8% liked)

Linux

47224 readers
1459 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 thought I'll make this thread for all of you out there who have questions but are afraid to ask them. This is your chance!

I'll try my best to answer any questions here, but I hope others in the community will contribute too!

you are viewing a single comment's thread
view the rest of the comments
[–] wanghis_khan@lemmy.ml 15 points 5 months ago (2 children)

NixOS. I don't get what it really is or does? It's a Linux distribution but with ceavets or something

[–] exu@feditown.com 20 points 5 months ago (4 children)

It's a distribution completely centered around the Nix package manager. This basically allows you to program how your system should look using one programming language. If you want an identical system, just copy that file and you're set.

[–] ReakDuck@lemmy.ml 7 points 5 months ago (4 children)

I remember that thr kernel didn't had performance flags set and used, making NixOS not a nice Gaming platform.

Is this true? Can I fix it for myself easily?

[–] pineapplelover@infosec.pub 7 points 5 months ago

Easily? I've heard it's really time consuming to get it exactly how you like it but the same could be said about a lot of distros.

[–] exu@feditown.com 3 points 5 months ago

Are you talking about that vm.max_memory something?
Not sure how you'd change it in Nix exactly, but should be simple enough.

[–] sxt@lemmy.world 2 points 5 months ago (1 children)

Been gaming on nixos for a month or two and haven't had any issues AFAICT

[–] ReakDuck@lemmy.ml 1 points 5 months ago

I never said it wont have issues. Just a few less FPS without noticing.

[–] thedeadwalking4242@lemmy.world 1 points 5 months ago (1 children)

Honestly I get more preformace on nixos than I have with other distros

[–] ReakDuck@lemmy.ml 1 points 5 months ago
[–] ReakDuck@lemmy.ml -5 points 5 months ago

I remember that thr kernel didn't had performance flags set and used, making NixOS not a nice Gaming platform.

Is this true? Can I fix it for myself easily?

[–] ReakDuck@lemmy.ml -5 points 5 months ago

I remember that thr kernel didn't had performance flags set and used, making NixOS not a nice Gaming platform.

Is this true? Can I fix it for myself easily?

[–] featured@hexbear.net 6 points 5 months ago

Instead of installing packages through a package manager one at a time and configuring your system by digging into individual config files, NixOS has you write a single config file with all your settings and programs declared. This lets you more easily configure your system and have a completely reproducible system by just copying your nix files to another nixos machine and rebuilding.

It’s also an immutable distribution, so the base system files are only modified when rebuilding the whole system from your config, but during runtime it’s read only for security and stability.