CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - 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: CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU (/thread-10846.html) |
CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - albert4 - 06-22-2022 Linux newbie here - could you kindly guide me to make hashcat works on GCP e2 instance (2 vCPU, no GPU, OS Debian) - which package should I install ? (i know it will be slow without GPU). OpenCL seems to be already installed. Considering error "clCreateContext(): CL_DEVICE_NOT_AVAILABLE" Code: :~/hashcat-6.2.5$ ./hashcat.bin -I Code: :~/hashcat-6.2.5$ ./hashcat.bin -b -m 0 Thanks a lot. RE: CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - Snoopy - 06-23-2022 * Device #1: Intel(R) Xeon(R) CPU @ 2.20GHz, skipped hahscat is skipping CPU by default you will need to add option Code: -D1 -d1 RE: CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - albert4 - 06-25-2022 Thanks, but it gives the same result - skipped : Code: $ ./hashcat.bin -D1 -d1 -b -m0 RE: CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - marc1n - 06-25-2022 Only -D1 not -D1 -d1 RE: CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - albert4 - 06-25-2022 Same result : Code: $ ./hashcat.bin -D 1 -b -m0 RE: CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - marc1n - 06-25-2022 See that you have Memory.Total...: 975 MB (limited to 121 MB allocatable in one block) Memory.Free....: 0 MB your instance has no memory to run... RE: CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - albert4 - 06-26-2022 Good point. Code: $ grep Mem /proc/meminfo Any hints why hashcat finds MemFree = 0 Mb whereas real MemFree is around 520 Mb ? RE: CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - marc1n - 06-26-2022 (06-26-2022, 02:03 PM)albert4 Wrote: Good point. You can't run everything on 1GB it's not those times You have too little memory as I already wrote... RE: CL_DEVICE_NOT_AVAILABLE on GCP Xeon CPU - Snoopy - 06-28-2022 didnt spot the memory = 0 i guess this is a small (free) vps?, these virtual machines are not made for loving you baby, i mean hashcat, if you dont have the option to get more ram for free, try using hashcat on your pc at home @ Marc1n, -D1 -d1 is also right in this context, depending on the settings and driverconfiguration the cpu could be shown more than once, i have a workstation with 2* xeon working, when just using option -D1 (CPU -only) Code: hashcat -m0 -b -D1 Code: hashcat -m0 -b -D1 -d1 as you can see, -D1 -d1 sticks to one possibiliy how the CPU is utilized, but same overall speed (i think this is better thna using 2 different ways how hahscat talks to the CPU |