Cannot run GTX 1070Ti on Ubuntu
#1
Hello guys,

i have already installed the drivers version 396.54 for the GTX 1070Ti but hashcat somehow doesn't recognize it and im stucked.


I am getting this error

Code:
hashcat (v4.2.1) starting...

Cannot find an OpenCL ICD loader library.

You are probably missing the native OpenCL runtime or driver for your platform.

* AMD GPUs on Linux require this runtime and/or driver:
 "RadeonOpenCompute (ROCm)" Software Platform (1.6.180 or later)
* Intel CPUs require this runtime and/or driver:
 "OpenCL Runtime for Intel Core and Intel Xeon Processors" (16.1.1 or later)
* Intel GPUs on Linux require this runtime and/or driver:
 "OpenCL 2.0 GPU Driver Package for Linux" (2.0 or later)
* NVIDIA GPUs require this runtime and/or driver:
 "NVIDIA Driver" (367.x or later)

What could be the problem? I would very appreciate an answer. Thank you.
#2
Did you do 
Code:
sudo apt install nvidia-390
IIRC that’s all I needed to do to get OpenCL on my Ubuntu box.
#3
This may not be the whole story, but take a look at https://hashcat.net/faq/wrongdriver - you may at least need:

Code:
apt-get install ocl-icd-libopencl1 opencl-headers clinfo
~
#4
Interesting Royce, I don’t recall having to install all that, I think everything came with the one line I had, but maybe I’m just forgetful.
#5
(08-31-2018, 04:53 AM)royce Wrote: This may not be the whole story, but take a look at https://hashcat.net/faq/wrongdriver - you may at least need:

Code:
apt-get install ocl-icd-libopencl1 opencl-headers clinfo

This has solved my problem. Now I'm able to run hashcat. Thank you very much!