hashcat Forum
RTX4090 on Vast AI - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Misc (https://hashcat.net/forum/forum-15.html)
+--- Forum: Hardware (https://hashcat.net/forum/forum-13.html)
+--- Thread: RTX4090 on Vast AI (/thread-11165.html)

Pages: 1 2


RE: RTX4090 on Vast AI - marc1n - 02-15-2023

There is no suitable docker yet, but I think the renewal should be written under 4090.


RE: RTX4090 on Vast AI - marc1n - 02-24-2023

Everything is working now!
Use this image https://hub.docker.com/r/bnzm5270/hashcat/
Then command apt update && apt upgrade -y && apt dist-upgrade -y && apt autoremove -y && apt autoclean -y
next rm -r hashcat
next git clone https://github.com/hashcat/hashcat.git
cd hashcat
make install
Done!
I often use it and have no errors.


RE: RTX4090 on Vast AI - smashedsusan - 02-24-2023

(02-24-2023, 10:25 AM)marc1n Wrote: Everything is working now!
Use this image https://hub.docker.com/r/bnzm5270/hashcat/
Then command apt update && apt upgrade -y && apt  dist-upgrade -y && apt autoremove -y && apt autoclean -y
next rm -r hashcat
next git clone https://github.com/hashcat/hashcat.git
cd hashcat
make install
Done!
I often use it and have no errors.

Thanks
All good


RE: RTX4090 on Vast AI - BlueCalex - 05-02-2023

I did this and am still getting errors. Is there now a new method / updated container people use for vast?


(02-24-2023, 10:25 AM)marc1n Wrote: Everything is working now!
Use this image https://hub.docker.com/r/bnzm5270/hashcat/
Then command apt update && apt upgrade -y && apt  dist-upgrade -y && apt autoremove -y && apt autoclean -y
next rm -r hashcat
next git clone https://github.com/hashcat/hashcat.git
cd hashcat
make install
Done!
I often use it and have no errors.



RE: RTX4090 on Vast AI - marc1n - 05-02-2023

(05-02-2023, 05:28 PM)BlueCalex Wrote: I did this and am still getting errors. Is there now a new method / updated container people use for vast?


(02-24-2023, 10:25 AM)marc1n Wrote: Everything is working now!
Use this image https://hub.docker.com/r/bnzm5270/hashcat/
Then command apt update && apt upgrade -y && apt  dist-upgrade -y && apt autoremove -y && apt autoclean -y
next rm -r hashcat
next git clone https://github.com/hashcat/hashcat.git
cd hashcat
make install
Done!
I often use it and have no errors.

https://hub.docker.com/r/leho72/hashtopolis-hashcat-vast-new/

apt update && apt upgrade -y && apt dist-upgrade -y && apt autoremove -y && apt autoclean -y
apt install git -y
git clone https://github.com/hashcat/hashcat.git
cd hashcat
make install
DONE!


RE: RTX4090 on Vast AI - dizcza - 05-19-2023

I made it available on the dockerhub:

Code:
docker pull dizcza/docker-hashcat:cuda

Among other devices, the repo now supports RTX 4090 on CUDA 11.

Code:
$ hashcat -b -m22000

CUDA API (CUDA 12.0)
====================
* Device #1: NVIDIA GeForce RTX 4090, 23827/24215 MB, 128MCU

-------------------------------------------------------------
* Hash-Mode 22000 (WPA-PBKDF2-PMKID+EAPOL) [Iterations: 4095]
-------------------------------------------------------------
Speed.#1.........:  2292.3 kH/s (55.28ms) @ Accel:16 Loops:512 Thr:512 Vec:1



RE: RTX4090 on Vast AI - marc1n - 05-19-2023

(05-19-2023, 04:12 PM)dizcza Wrote: I made it available on the dockerhub:

Code:
docker pull dizcza/docker-hashcat:cuda

Among other devices, the repo now supports RTX 4090 on CUDA 11.

Code:
$ hashcat -b -m22000

CUDA API (CUDA 12.0)
====================
* Device #1: NVIDIA GeForce RTX 4090, 23827/24215 MB, 128MCU

-------------------------------------------------------------
* Hash-Mode 22000 (WPA-PBKDF2-PMKID+EAPOL) [Iterations: 4095]
-------------------------------------------------------------
Speed.#1.........:  2292.3 kH/s (55.28ms) @ Accel:16 Loops:512 Thr:512 Vec:1

GreaT Work! ThX Very Much BrO!