↓
 

Adventures With Linux ™

Linux Technologies and Fun Times..

  • Home
  • About the Author…
  • Copyright and Trademarks..

Tag Archives: success

Post navigation

← Older posts

NVIDIA – New 580.xx driver OK with Kernel 6.19..

Adventures With Linux ™ Posted on January 14, 2026 by RGJanuary 14, 2026

NVIDIA have just released a new version of the 580.xx driver – 580.126.09 – and details etc. are here:  https://www.nvidia.com/en-us/drivers/details/261243/ This now compiles/loads/runs OK with Kernel 6.19 (tested with 6.19-rc5): ……………………. CC [M] .module-common.o LD [M] nvidia.ko CC [M] nvidia-uvm.mod.o LD [M] nvidia-uvm.ko CC [M] nvidia-modeset.mod.o LD [M] nvidia-modeset.ko CC [M] nvidia-drm.mod.o LD [M] nvidia-drm.ko CC [M] … Continue reading →

Posted in compilation, kernel, Linux, NVIDIA, Opinion | Tagged 580.126.09, nvidia, ok with kernel 6.19, success | 1 Reply

NVIDIA – Stay of Execution for GTX Cards…

Adventures With Linux ™ Posted on December 27, 2025 by RGDecember 27, 2025

After (still..) waiting for an updated version of the NVIDIA 580.xx drivers, I decided to do some more investigation of the GPL-only fail after my hack of the ‘proprietary’ branch of driver 580.119.02.. I soon found that the “… GPL-incompatible module nvidia.ko uses GPL-only symbol ‘__vma_start_write’ ..” issue had first occurred with Kernel 6.15, so (once again) … Continue reading →

Posted in compilation, Hacks, kernel, Linux, NVIDIA, Opinion | Tagged 580.119.02, gtx support, hack for kernel 6.19, nvidia, success | Leave a reply

NVIDIA – New Driver Supports Kernel 6.19.. No Hacks Necessary..

Adventures With Linux ™ Posted on December 19, 2025 by RGDecember 19, 2025

NVIDIA have just release driver version 590.48.01, and details are here:  https://www.nvidia.com/en-us/drivers/details/259042/ This compiles/loads/runs successfully with Kernel 6.19 (tested with 6.19-RC1): ……………………. CC [M] nvidia.mod.o CC [M] .module-common.o LD [M] nvidia.ko CC [M] nvidia-uvm.mod.o LD [M] nvidia-uvm.ko CC [M] nvidia-modeset.mod.o LD [M] nvidia-modeset.ko CC [M] nvidia-drm.mod.o LD [M] nvidia-drm.ko CC [M] nvidia-peermem.mod.o LD [M] nvidia-peermem.ko make[2]: Leaving … Continue reading →

Posted in compilation, kernel, Linux, NVIDIA, Opinion | Tagged driver 590.48.01, nvidia, ok with kernel 6.19, success, tested with 6.19-rc1 | 4 Replies

NVIDIA – Hack to Get Kernel 6.19 Support – Just…

Adventures With Linux ™ Posted on December 18, 2025 by RGDecember 18, 2025

The latest NVIDIA drivers failed with Kernel 6.19-rc1, as detailed in an earlier post, and after some more research I was able to work out a hack to fix this, and in the process discovered a bit of a surprise.. I managed to get the NVIDIA-proprietary code for 580.119.02 to compile successfully, but then: ………………………… ERROR: modpost: … Continue reading →

Posted in compilation, Crash and Burn.., Hacks, kernel, Linux, NVIDIA, Opinion | Tagged gpl issues, hack, kernel 6.19, kernel-open, nvidia, success, support surprise | Leave a reply

ARM64 – Rock Pi N10 – Finally Booting From NVME..

Adventures With Linux ™ Posted on July 5, 2023 by RGJuly 5, 2023

I had managed to get Fedora running on my Rock Pi N10 some considerable time ago, but still was frustrated by the – apparent – lack of support for NVME, despite the slot for one in the chassis, and u-boot commands included..  I had posted this question to the RADXA Forum, but did not get a useful … Continue reading →

Posted in aarch64, ARM64, Fedora, fixed, Hacks, Linux, NVME, Opinion, Rock Pi N10, U-Boot | Tagged aarch64, arm64, boot from nvme, fedora 38, nvme, rock pi n10, success, u-boot | Leave a reply

Kernel – 5.17-rc5 Compile Fail, and Fix..

Adventures With Linux ™ Posted on February 21, 2022 by RGFebruary 21, 2022

This one fell between the cracks, and should have been fixed before -rc5 was released… ……………….. AR net/netfilter/built-in.a LD [M] net/netfilter/nf_conntrack.o CC [M] net/netfilter/xt_socket.o net/netfilter/xt_socket.c: In function ‘socket_mt_destroy’: net/netfilter/xt_socket.c:224:17: error: implicit declaration of function ‘nf_defrag_ipv6_disable’; did you mean ‘nf_defrag_ipv4_disable’? [-Werror=implicit-function-declaration] 224 | nf_defrag_ipv6_disable(par->net); | ^~~~~~~~~~~~~~~~~~~~~~ | nf_defrag_ipv4_disable cc1: some warnings being treated as errors make[2]: *** [scripts/Makefile.build:288: … Continue reading →

Posted in compilation, fix, kernel, Linux | Tagged compile fail, fix, kernel 5.17-rc5, nf_defrag_ipv6_disable, success | Leave a reply

NVIDIA – Patch for 495.44, Kernel 5.16-rc1 Support..

Adventures With Linux ™ Posted on November 18, 2021 by RGNovember 18, 2021

Thanks to Gerd, there is now a patch for NVIDIA driver 495.44 and Kernel 5.16-rc1, which can be found under the comments on my previous article:  https://rglinuxtech.com/?p=2974 Of course, take care to cut/paste in text mode, as html will ruin the formatting etc.. I have applied this, and 495.44 now appears to compile/load/run OK, with kernel 5.16-rc1.. … Continue reading →

Posted in fix, kernel, Linux, NVIDIA, patches, success | Tagged kernel 5.16-rc1, nvidia 495.44, patch available, success | 1 Reply

Kernel – 5.15. Early Test for New NTFS Support..

Adventures With Linux ™ Posted on September 7, 2021 by RGSeptember 7, 2021

As usual, the next release of Linux includes new features, but this time – with 5.15 – it now includes new NTFS read/write support in the kernel.      The code for this is from Paragon, and is already in the 5.15 codebase on git, so I decided to test it.. As this was pre-RC code, it also flagged … Continue reading →

Posted in alpha release, compilation, kernel, Linux, NTFS, Opinion | Tagged early tests, kernel 5.15, new ntfs, ntfs3, success | Leave a reply

Compiler – Fun with CLANG – Kernel, NVIDIA, and VMware…

Adventures With Linux ™ Posted on March 27, 2021 by RGMarch 30, 2021

I have been carrying out some preliminary tests to see how feasible it is to compile the Linux Kernel, and NVIDIA drivers, and VMware, using the ‘alternative’ to GCC – CLANG.. The kernel compile is relatively easy, and well documented: # make CC=clang HOSTCC=clang -j8 (for a 4-core system) The compile seems to be slower than GCC, … Continue reading →

Posted in clang, compilation, Fedora, gcc, kernel, Linux, NVIDIA, Opinion, Performance, quirks, VMware | Tagged clang, compile tests, gcc alternative, kernel, nvidia, success, vmware | 1 Reply

NVIDIA – Patch for Kernel 5.12 Support.

Adventures With Linux ™ Posted on March 2, 2021 by RGMarch 2, 2021

Thanks to Willy Frissen for the info, and joanbm for the patch, which can be found at https://gist.githubusercontent.com/joanbm/7a034ac4b79396c3841040e410ef7e91/raw/b21e792dc0b6f891a4a83d182e0ba9b24b36bd80/nvidia-fix-linux-5.12.patch I have applied this to 460.56, with Kernel 5.12-rc1, and it compiles successfully, and appears to work OK.     Unable to do a longer test, as my 5.12-rc1 system still crashes with a USB error, after the KVM switches out.. … Continue reading →

Posted in fix, kernel, Linux, NVIDIA, Opinion | Tagged nvidia 460.56, patch for kernel 5.12, success | Leave a reply

Post navigation

← Older posts
Original content © Robert Gadsdon 2013
↑