I want the steps on a video with explaining in order to know how can i run it i am not a programmer to understand commands and visual studio etc. even the screenshot on the first page i didn't understand anything from it.
It's not as complicated as you think and you don't have to be a programmer to be able to run the BitCrack. Basically what you need to do are :
1. Download BitCrack from
https://github.com/brichard19/BitCrack/releases. If you're not sure, just download
clBitCrack.exe2. Open application called "Command Prompt" and move to directory path where
clBitCrack.exe is located
3. Type
clBitCrack.exe on "Command Prompt"
If you never heard or don't know how to use "Command Prompt", please read this guide
https://techtipvault.com/windows/command-prompt-windows-10-cmd-guide/P.S. i can't make screenshot since i don't use Windows OS
I didn't find clBitCrack.exe
Command Prompt said clBitCrack.exe is not recognized as an internal or external command, operable program, or batch file.
If you are running Nvidia cards, use this link to download cuBitCrack.exe
https://github.com/brichard19/BitCrack/releases/download/0.31/cuBitCrack.exeIf you are using AMD cards, use this link to download clBitCrack.exe
https://github.com/brichard19/BitCrack/releases/download/0.31/clBitCrack.exeCreate a folder and place one of those .exe files in the folder, along with your input file that contains the addresses you want to search for.
So let's say you create a folder called "BitCrack"; inside there, place one of the .exe files and the input file containing addresses to search for.
Now, create a batch file. Create a new text document and add the commands you want the program to run with. For example:
cuBitCrack -d 0 -b 64 -t 256 -p 512 --keyspace 8000000000000000:FFFFFFFFFFFFFFFF -i addresses.txt -o FOUNDKEY.txt
Now save that text document as a .bat file. When you go to save the text doc as bat file, make sure you select the "Save as type:" box as All Files and then save (for example) runbitcrack.bat....it's important to add the .bat extension or you are just saving as a text document and the program will not run.
Once that is done, double click on your new .bat file and the program will run. It may say you need another file such as vcc....; if so, google that file, download it, and place it in the same folder you created (with all these files in it).
Breakdown of .bat file commands:
cuBitCrack - this is the .exe file that you downloaded in first step. It'll either be cuBitCrack or clBitCrack, depending on your video card.
-d 0 - this is telling the program to use the video card numbered 0; if you have more than one card, you can change this to which video card you want to use
-b 64 -t 256 -p 512 - tells program what gridsize you want to use. you will have to experiment with these numbers to fine tune your card but these default numbers will get you started
--keyspace 8000000000000000:FFFFFFFFFFFFFFFF - this is the keyspace that the program will search in, change it to search the space you want to search
-i addresses.txt - the -i tells program this is your input file; this is where you save the btc addresses you want to search for
-o FOUNDKEY.txt - this -o tells the program you want to save your found keys, in this example, if you find a key, it will save the key in a text file called "FOUNDKEY" . It will save it in the same folder you are running the program from.
edit: the above is for Windows; if you are using Linux/Ubuntu, someone else will have to help you.