Recently installed linux and I’ve been having frequent graphics related issues. Mostly games being far laggier then they were on windows. Pretty sure the issue is my NVIDIA drivers not working, causing my laptop to use my integrated GPU instead. I’ve tried reinstalling the drivers through the control panel but I’m not entirely sure I did that correctly tbh. I’ve found people talking about some methods that seem like they would work in other places but I’m not sure how to implement any of them because I have absolutely no idea how to actually go about doing pretty much anything yet and I have no idea where to even start. Every time my laptop starts up it says something like “loading [whatever the normal drivers are called] failed, falling back on neveau”. Also trying to boot up my computer without my second monitor connected will sometimes cause it to not work.
That should be nouveau, the open-source driver that Fedora is allowed to provide. Gamers generally use the Nvidia drivers from rpmfusion. The falling back message indicates a problem with the Nvidia driver.
Note that when reporting problems it is best if you can ensure that Fedora and vendor firmware packages are fully updated so you aren’t chasing a solved problem.
I have the exact same GPU. Could you share the output of lspci | grep -i vga and see if by any chance you have NVIDIA Corporation AD107M [GeForce RTX 4060 Max-Q / Mobile] (rev a1) or something similar?
This would seem to possibly mean secure boot is enabled but the module is not signed or the key was not imported into the bios as is required.
First lets check if the drivers are properly installed. dnf list --installed \*nvidia\* should show those drivers as being installed from the rpmfusion repo. If not installed from rpmfusion then other steps will need to be performed. The steps below rely on the drivers from rpmfusion.
mokutil --sb-state should show whether secure boot is enabled or disabled. If enabled then you probably need to follow these steps.
sudo akmods --rebuild --force to ensure the driver is properly compiled and installed
follow the steps in the file /usr/share/doc/akmods/README.secureboot to import the signing key into bios. The reboot at that time should then allow the nvidia driver to load into the kernel.
If this does not work for you then let us know so we can do more troubleshooting.