Hashcat/Nvidia Issues - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Hashcat/Nvidia Issues (/thread-12464.html) |
Hashcat/Nvidia Issues - JLowborn - 01-11-2025 I'm having issues to use hashcat, as it always return me the following error: Code: nvmlDeviceGetFanSpeed(): Not Supported So far I've tried reinstalling both Cuda and Nvidia drivers, using different versions, searching in different places on methods of install, and no success. I'm currently using the latest available hashcat version (6.2.6). Here's the output from nvidia-smi and cuda version: Code: $ sudo pacman -Q | grep hashcat Finally, here's my system specifications: Code: OS: Manjaro 24.1.2 Xahea Feel free to ask for any relevant information needed to solve this issue. RE: Hashcat/Nvidia Issues - penguinkeeper - 01-11-2025 The nvmlDeviceGetFanSpeed thing is just a very common problem with laptops, where Hashcat can't get the fan speed, it's nothing to worry about. The "ptxas application ptx input" error is because your driver and CUDA Toolkit version don't quite match up. Make sure both are fully updated and restart after installing them both and it should work RE: Hashcat/Nvidia Issues - JLowborn - 01-11-2025 (01-11-2025, 01:12 AM)penguinkeeper Wrote: The nvmlDeviceGetFanSpeed thing is just a very common problem with laptops, where Hashcat can't get the fan speed, it's nothing to worry about. I've installed the latest driver version according to the official site (550.142), although hashcat isn't working at all, as mentioned in the thread, I've reinstalled it many times, saw another post mentioning a table with supported driver versions for each cuda version, no success. RE: Hashcat/Nvidia Issues - ZerBea - 01-11-2025 Code: $ pacman -Q | grep nvidia Code: $ pacman -Q | grep cuda cuda compatibility table: 560.28.03+ is compatible to cuda 12.6 https://docs.nvidia.com/deploy/cuda-compatibility/index.html Your driver 550.142 is compatible to cuda 12.4 And to make things more complicated. The version shown by pacman (12.6.3.-1) is not identical to the version shown by nvida-smi: Code: $ nvidia-smi RE: Hashcat/Nvidia Issues - JLowborn - 01-12-2025 (01-11-2025, 01:57 PM)ZerBea Wrote: I'm sorry if that's a stupid question, but do you have any ideia why the versions are not matching? Should I uninstall everything and reinstall from scratch once more? And why is the site telling me the latest version is 550? Solved: I've removed cuda from pacman, it seems hashcat is working as expected, still not sure why the version mismatch between pacman and nvidia-smi. RE: Hashcat/Nvidia Issues - ZerBea - 01-12-2025 Why does nvidia-smi show a different version? -> Only the nvidia developers know why. I suggest to ignore the nvida-smi output. Why do cuda package and nvidia driver package don't match? -> Only the package maintainer of the distribution knows. We have had this discussion, for many times, on Arch, e.g.: https://gitlab.archlinux.org/archlinux/packaging/packages/cuda/-/issues/7 But now Arch has a solution. How to prevent that this happens again on API or driver change? First take a look at the compatibility table linked above. If everything matches than run pacman -Syu If not - tell pacman to ignore the package (as long as the version doesn't match): edit /etc/pacman.conf IgnorePkg = cuda Remove that, if cuda has been updated to a matching version. And why is the site telling me the latest version is 550? -> It's (the new branch) there: Linux x86_64/AMD64/EM64T Latest Production Branch Version: 550.142 Latest New Feature Branch Version: 565.77 https://www.nvidia.com/en-us/drivers/unix/ In detail: Latest New Feature Branch Version: 565.77 https://www.nvidia.com/en-us/drivers/details/237587/ Like Arch, Manjaro is a rolling release distribution too. I don't recommend to install this driver outside the package manager. But if you really need it, build your own custom package and install that. https://wiki.archlinux.org/title/Creating_packages I recommend to wait until the packages have been released. the driver is already in unstable: https://manjaristas.org/branch_compare?q=nvidia-dkms https://manjaristas.org/branch_compare?q=cuda |