this post was submitted on 07 Oct 2025
63 points (97.0% liked)

Linux

58866 readers
544 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 6 years ago
MODERATORS
 

I want to make the move to Mint at the end of Win10 in a week or so, but I've heard some horror stories about how tough it can be to get Nvidia GPUs working with them. As it is I have a 4060TI and no money for an AMD GPU. If I can't get my GPU working with Linux I'm probably gonna end up having to stick with Windows untim I can afford an AMD GPU, the thought of which doesn't exactly excite me.

you are viewing a single comment's thread
view the rest of the comments
[–] thedeadwalking4242@lemmy.world 5 points 3 days ago (1 children)

On Nixos haven’t had any issues. I did have issues getting the dynamic GPU thing going through. That’s a bit of a technical challenge at-least on Nixos

[–] clay_pidgin@sh.itjust.works 3 points 3 days ago (1 children)

What's a dynamic GPU?

Yeah it was dead simple on Nixos. I just grabbed the Nvidia section of the wiki. https://wiki.nixos.org/wiki/NVIDIA

{
  hardware = {
    # Renamed from opengl.enable
    graphics.enable = true;
    # Most Wayland compositors need this
    nvidia.modesetting.enable = true;
    nvidia.powerManagement.enable = false;
    nvidia.open = false;
    nvidia.nvidiaSettings = true;
  };
[–] thedeadwalking4242@lemmy.world 3 points 3 days ago (1 children)

Sorry it’s called “hybrid graphics”

[–] clay_pidgin@sh.itjust.works 1 points 3 days ago (1 children)

Oh that's neat, I'd never heard of it. Using the integrated graphics as well as a PCIE GPU. Cool.

[–] thedeadwalking4242@lemmy.world 2 points 3 days ago (1 children)

Helps with battery life on laptops

[–] clay_pidgin@sh.itjust.works 1 points 3 days ago (1 children)

Does the display not need to be plugged into the onboard port, then?

[–] thedeadwalking4242@lemmy.world 1 points 3 days ago (1 children)

Not exactly sure what you mean by this

[–] clay_pidgin@sh.itjust.works 1 points 3 days ago* (last edited 3 days ago) (1 children)

On a desktop I might use the integrated graphics as well if I could use its HDMI/DP port for an additional monitor. Since you mentioned a laptop battery, I am guessing that you are choosing to drive the built in display with either the integrated graphics or the Nvidia graphics card built in. Have I misunderstood?

[–] thedeadwalking4242@lemmy.world 2 points 3 days ago (1 children)

So it actually works by process for my PC. Some memory mapping shenanigans for sure. Basically you set some environment variables when you launch a process and it will run of the dedicated gpu instead. Either port will show the same image

[–] clay_pidgin@sh.itjust.works 2 points 3 days ago

That's fascinating! I've never heard of that. Thank you for teaching me something new.