Help hahscat vs Linux Mint - 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: Help hahscat vs Linux Mint (/thread-10406.html) |
Help hahscat vs Linux Mint - marviha1 - 10-17-2021 Linux mint. Hello everyone, guys, help me solve the problem. Downloaded hashcat https://hashcat.net/files/hashcat-6.2.4.tar.gz Unpacked, in the console I run the command "make": gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/affinity.c -o obj/affinity.NATIVE.o -fpic gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/autotune.c -o obj/autotune.NATIVE.o -fpic gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/backend.c -o obj/backend.NATIVE.o -fpic gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/benchmark.c -o obj/benchmark.NATIVE.o -fpic gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/bitmap.c -o obj/bitmap.NATIVE.o -fpic gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/bitops.c -o obj/bitops.NATIVE.o -fpic gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/combinator.c -o obj/combinator.NATIVE.o -fpic gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/common.c -o obj/common.NATIVE.o -fpic In file included from src/bitops.c:6: include/common.h:40:10: fatal error: string.h: No such file or directory 40 | #include <string.h> | ^~~~~~~~~~ compilation terminated. In file included from src/combinator.c:6: include/common.h:40:10: fatal error: string.h: No such file or directory 40 | #include <string.h> | ^~~~~~~~~~ compilation terminated. In file included from src/backend.c:6: include/common.h:40:10: fatal error: string.h: No such file or directory 40 | #include <string.h> | ^~~~~~~~~~ compilation terminated. In file included from src/bitmap.c:6: include/common.h:40:10: fatal error: string.h: No such file or directory 40 | #include <string.h> | ^~~~~~~~~~ compilation terminated. In file included from src/benchmark.c:6: include/common.h:40:10: fatal error: string.h: No such file or directory 40 | #include <string.h> | ^~~~~~~~~~ compilation terminated. In file included from src/common.c:6: include/common.h:40:10: fatal error: string.h: No such file or directory 40 | #include <string.h> | ^~~~~~~~~~ compilation terminated. In file included from src/affinity.c:6: include/common.h:40:10: fatal error: string.h: No such file or directory 40 | #include <string.h> | ^~~~~~~~~~ In file included from src/autotune.c:6: include/common.h:40:10: fatal error: string.h: No such file or directory 40 | #include <string.h> | ^~~~~~~~~~ compilation terminated. compilation terminated. make: *** [src/Makefile:562: obj/combinator.NATIVE.o] Error 1 make: *** [src/Makefile:562: obj/backend.NATIVE.o] Error 1 make: *** [src/Makefile:562: obj/bitops.NATIVE.o] Error 1 make: *** [src/Makefile:562: obj/benchmark.NATIVE.o] Error 1 make: *** [src/Makefile:562: obj/bitmap.NATIVE.o] Error 1 make: *** [src/Makefile:562: obj/common.NATIVE.o] Error 1 make: *** [src/Makefile:562: obj/autotune.NATIVE.o] Error 1 make: *** [src/Makefile:562: obj/affinity.NATIVE.o] Error 1 RE: Help hahscat vs Linux Mint - ZerBea - 10-18-2021 Development Tools (correct) installed? https://tecadmin.net/install-development-tools-on-ubuntu/ How to find the includes is described here: https://unix.stackexchange.com/questions/100626/how-to-view-source-of-string-h-and-other-library-function-source-code-in-gedit RE: Help hahscat vs Linux Mint - marviha1 - 10-18-2021 (10-18-2021, 10:11 AM)ZerBea Wrote: Development Tools (correct) installed? Thanks a lot, this https://tecadmin.net/install-development-tools-on-ubuntu/ helped. |