This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # fix-nvidia.sh | |
| # | |
| # Installs NVIDIA driver 595+ on Proxmox VE / Debian trixie with kernel 7.0+. | |
| # | |
| # Root cause: The Debian/Proxmox nvidia-kernel-dkms package (version 550) cannot | |
| # build against kernel 6.17+ or 7.0+ due to DRM API changes (struct_mutex removal, | |
| # framebuffer signature changes). The official .run installer at 595.71.05+ includes | |
| # the necessary patches. | |
| # |