Package Details: nvidia-470xx-utils 470.256.02-7.98

Git Clone URL: https://aur.archlinux.org/nvidia-470xx-utils.git (read-only, click to copy)
Package Base: nvidia-470xx-utils
Description: NVIDIA drivers utilities
Upstream URL: http://www.nvidia.com/
Keywords: driver nvidia video
Licenses: custom
Conflicts: nvidia-libgl, nvidia-utils
Provides: nvidia-libgl, nvidia-utils, opengl-driver, vulkan-driver
Submitter: jonathon
Maintainer: Sinyria (cysp74, SoftExpert)
Last Packager: SoftExpert
Votes: 110
Popularity: 5.69
First Submitted: 2021-10-31 00:50 (UTC)
Last Updated: 2025-05-04 14:37 (UTC)

Dependencies (6)

Required by (316)

Sources (14)

Pinned Comments

SoftExpert commented on 2025-02-09 10:20 (UTC)

For the beginners in need of assistance, first take a look at this recommended guide https://github.com/korvahannu/arch-nvidia-drivers-installation-guide - maybe it helps to solve the issues your are having with this version of the driver.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 47 Next › Last »

jdjennings18 commented on 2025-04-10 03:36 (UTC)

Working on my GT 710 with kernel 6.14.1. Thanks Juan and SoftEcpert!

SoftExpert commented on 2025-04-09 17:04 (UTC)

I noticed that Juan provided a patch, so I updated the release to include it.

Again, a heartfelt "thank you", Juan !

SoftExpert commented on 2025-04-09 16:23 (UTC)

Hi @lighterowl and @injiniero; thanks for the patch and, respectively, for trying it and confirming that it works.

@everybody: I pushed the v7.97 of the package; please test it and give feedback.

injiniero commented on 2025-04-09 14:38 (UTC)

I can confirm that lighterowl's patch works for my old GeForce GTX 760 with 6.14 kernel. I hope that SoftExpert publish that patch.

Thank you

lighterowl commented on 2025-04-09 07:05 (UTC) (edited on 2025-04-09 07:05 (UTC) by lighterowl)

Doesn't compile out-of-the-box with 6.14, thankfully the fix is simple and amounts to ifdefing out a removed field from a struct, see https://github.com/NVIDIA/open-gpu-kernel-modules/pull/783 for a link to the relevant Linux commit.

Here's the patch I applied locally to build :

diff -u a/nvidia-drm/nvidia-drm-drv.c b/nvidia-drm/nvidia-drm-drv.c
--- a/nvidia-drm/nvidia-drm-drv.c       2024-05-02 16:50:00.000000000 +0200
+++ b/nvidia-drm/nvidia-drm-drv.c       2025-04-09 08:45:50.752546448 +0200
@@ -868,7 +868,9 @@
     .name                   = "nvidia-drm",

     .desc                   = "NVIDIA DRM driver",
+#if LINUX_VERSION_CODE < KERNEL_VERSION(6, 14, 0)
     .date                   = "20160202",
+#endif

 #if defined(NV_DRM_DRIVER_HAS_DEVICE_LIST)
     .device_list            = LIST_HEAD_INIT(nv_drm_driver.device_list),
 .device_list            = LIST_HEAD_INIT(nv_drm_driver.device_list),

Can confirm nvidia-smi, vkcube, and wine+dxvk still work OK with my GT 645M under 6.14.

Alexey104 commented on 2025-03-09 15:18 (UTC) (edited on 2025-03-09 15:20 (UTC) by Alexey104)

@cerberus1746, I’m also getting the GPU has fallen off the bus error, just like in your logs, along with spontaneous reboots on my desktop GTX 770. This happens with any kernel starting from 6.7 and later. I’m sticking with the 6.6 kernel since it's the last version that works flawlessly with this driver (at least for me), and it's still receiving updates until 2026.

While some users report that the driver still works on newer kernels, there’s no guarantee this will remain the case. If you plan to keep using this driver, I’d recommend sticking with an older kernel.

cerberus1746 commented on 2025-03-09 14:58 (UTC)

Before anything, the video card works in Windows. It is not dead, the errors might make you think it is, but it isn't. And also nouveau works, but I need vulkan, and vulkan-nouveau does not support my video card, I tried, even with BROKEN_DRIVER flag

Any time I need to use my video card in my optimus laptop the nvidia driver crashes.

The full logs can be found here: https://pastebin.com/xgKUrveJ

The full specs of the computer are here: https://icecat.biz/en/p/dell/w540210in8/inspiron-laptops-14r+-5421-21966017.html

I tried installing the driver 430 but for some reason the driver dkms build fails with the current 6.12.17-1-lts

Following or not this guide makes no difference: https://github.com/korvahannu/arch-nvidia-drivers-installation-guide