6
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 21 Dec 2025
6 points (80.0% liked)
Linux Gaming
25146 readers
97 users here now
Discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck). Potentially a $HOME away from home for disgruntled /r/linux_gaming denizens of the redditarian demesne.
This page can be subscribed to via RSS.
Original /r/linux_gaming pengwing by uoou.
No memes/shitposts/low-effort posts, please.
Resources
Help:
- ProtonDB
- Are We Anticheat Yet?
- r/linux_gaming FAQ
- Fork of an earlier version of the above
- PCGamingWiki
- LibreGameWiki
Launchers/Game Library Managers:
General:
Discord:
IRC:
Matrix:
Telegram:
founded 2 years ago
MODERATORS
I don't use Kali Linux, but it sounds like it's based on Debian's testing release. Debian hasn't packaged Blackwell drivers yet, so I wouldn't be surprised if Kali doesn't have them packaged either. You can download Blackwell drivers from Nvidia, but the Debian guys won't have made sure that things don't break with them.
https://wiki.debian.org/NvidiaGraphicsDrivers
https://www.nvidia.com/en-us/drivers/details/259042/
I don't know why you wouldn't be able to install the driver with the graphics card inserted.
The initrd contains drivers that aren't directly built into the kernel.
Typically, the way this works on Debian with third-party drivers is that you have the proper linux-headers package matching your current kernel installed. Then a third-party package registers a DKMS module with the driver source, and when you install a new kernel, the driver gets recompiled for that kernel. That driver gets dropped into the initrd, the ramdisk with the out-of-kernel stuff required to boot.
I don't use Nvidia hardware, so I can't tell you if that's what's supposed to happen, but I would guess so.
If you're not booting with it, my guess is that something isn't working as part of that process. Either the Nvidia script didn't register the module or it didn't get rebuilt or the installed driver has some issue and isn't working when you try to load it.
You can probably run
sudo dkms statusand it'll show DKMS modules and their current status. That might be a starting point.