LoyceV
Legendary
Offline
Activity: 3430
Merit: 17376
Thick-Skinned Gang Leader and Golden Feather 2021
|
|
March 07, 2016, 08:06:14 PM |
|
not skipping was correct. You'r binary is compiled and ready to go. Now we need to fix the last issue: Thanks is the package nvidia-modprobe installed? if not, install it. Seems like it: # lsmod | grep -i nvidia nvidia 8646656 33 drm 344064 7 i915,drm_kms_helper,nvidia # find / | grep modprobe | grep -i nvidia /etc/modprobe.d/nvidia-graphics-drivers.conf /etc/modprobe.d/nvidia-352_hybrid.conf /lib/nvidia-352/modprobe.conf
The contents of these files: Laptop / # cat /etc/modprobe.d/nvidia-graphics-drivers.conf # This file was installed by nvidia-352 # Do not edit this file manually
blacklist nouveau blacklist lbm-nouveau blacklist nvidia-current blacklist nvidia-173 blacklist nvidia-96 blacklist nvidia-current-updates blacklist nvidia-173-updates blacklist nvidia-96-updates blacklist nvidia-352-updates alias nvidia nvidia_352 alias nvidia-uvm nvidia_352-uvm alias nouveau off alias lbm-nouveau off
Laptop / # cat /etc/modprobe.d/nvidia-352_hybrid.conf # This file was installed by nvidia-352 # Do not edit this file manually
blacklist nouveau blacklist lbm-nouveau alias nouveau off alias lbm-nouveau off
Laptop / # cat /lib/nvidia-352/modprobe.conf # This file was installed by nvidia-352 # Do not edit this file manually
blacklist nouveau blacklist lbm-nouveau blacklist nvidia-current blacklist nvidia-173 blacklist nvidia-96 blacklist nvidia-current-updates blacklist nvidia-173-updates blacklist nvidia-96-updates blacklist nvidia-352-updates alias nvidia nvidia_352 alias nvidia-uvm nvidia_352-uvm alias nouveau off alias lbm-nouveau off I don't know iff the blacklists are relevant. I am running the Nvidia-driver: Judging by this I would say my X-server knows the card: And this is what I have installed: check if this file exists: $ ls -al /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1
does this exist too? $ ls -al /etc/OpenCL/vendors/nvidia.icd if not: $ sudo mkdir -p /etc/OpenCL/vendors $ sudo tee /etc/OpenCL/vendors/nvidia.icd <<< 'libnvidia-opencl.so.1'
I think this is all okay: Laptop ~ # ls -al /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1 lrwxrwxrwx 1 root root 26 Nov 16 20:51 /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1 -> libnvidia-opencl.so.352.63 Laptop ~ # ls -alL /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1 -rw-r--r-- 1 root root 15901968 Nov 8 06:08 /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1 Laptop ~ # ls -al /etc/OpenCL/vendors/nvidia.icd -rw-r--r-- 1 root root 22 Nov 8 05:08 /etc/OpenCL/vendors/nvidia.icd Laptop ~ # cat /etc/OpenCL/vendors/nvidia.icd libnvidia-opencl.so.1 Anything else I can do/try? It's probably something really simple once you know it
|
|
|
|
apoorvlathey
|
|
March 09, 2016, 06:40:06 PM |
|
All the vanity addresses are like : 1NAMExxxxxxxxxxxxxxxx
Is there a way that we can generate addresses which end in the desired way ?
For example : 1xxxxxxxxxxxxxNAME
If it is possible then whats the command line for windows?
|
|
|
|
shorena
Copper Member
Legendary
Offline
Activity: 1498
Merit: 1530
No I dont escrow anymore.
|
|
March 09, 2016, 06:47:49 PM |
|
All the vanity addresses are like : 1NAMExxxxxxxxxxxxxxxx
Is there a way that we can generate addresses which end in the desired way ?
For example : 1xxxxxxxxxxxxxNAME
If it is possible then whats the command line for windows?
If you dont use a GPU you can search for regex, the $ symbol means "at the end". Dont use the keys (obviously). >vanitygen64.exe -r NAME$ Pattern: NAME$ Address: 1Lo79wpQy3QVZePzEaL818F1uhXLC2NAME Privkey: 5JdvX473jNfr2LaYxsETj91E8aC1eiy17xAWkSTZ9g5om1dNLby
anywhere also works (and is obviously easier): >vanitygen64.exe -r NAME Pattern: NAME Address: 1EpHNAMEFohF8UF9pmuGSLdNtSyc41CkEn Privkey: 5J5fDUtVSiAwofjxpRcSKikhZzLjSSWbiE9kcPVyM4Lhhx7HrW6
You can also use more complex patterns. >vanitygen64.exe -r [Aa]{2}1{2}$ Pattern: [Aa]{2}1{2}$ Address: 19VJ8Pmd5MB4EFJ2ovYX8nurgWiDeAA11 Privkey: 5KWwwpWcKhKcJPgePWCzeM6XKr3cZsTDTuRXiPQCM9HR1b6AaY2
Pattern: [Aa]{2}1{2}$ Address: 1QAkUcikHoeAGgzeg21BMFx627mfntAa11 Privkey: 5KiP18jvZotGWnPWRwXda9TJgKyzhQi48evVv7wMgX4144rcnrq
|
Im not really here, its just your imagination.
|
|
|
apoorvlathey
|
|
March 09, 2016, 06:51:06 PM |
|
All the vanity addresses are like : 1NAMExxxxxxxxxxxxxxxx
Is there a way that we can generate addresses which end in the desired way ?
For example : 1xxxxxxxxxxxxxNAME
If it is possible then whats the command line for windows?
-snip- >vanitygen64.exe -r [Aa]{2}1{2}$ Pattern: [Aa]{2}1{2}$ Address: 19VJ8Pmd5MB4EFJ2ovYX8nurgWiDeAA11 Privkey: 5KWwwpWcKhKcJPgePWCzeM6XKr3cZsTDTuRXiPQCM9HR1b6AaY2
Pattern: [Aa]{2}1{2}$ Address: 1QAkUcikHoeAGgzeg21BMFx627mfntAa11 Privkey: 5KiP18jvZotGWnPWRwXda9TJgKyzhQi48evVv7wMgX4144rcnrq
I didn't understand the last one. Can you explain what do characters inside the brackets indicate ?
|
|
|
|
shorena
Copper Member
Legendary
Offline
Activity: 1498
Merit: 1530
No I dont escrow anymore.
|
|
March 09, 2016, 07:27:33 PM |
|
All the vanity addresses are like : 1NAMExxxxxxxxxxxxxxxx
Is there a way that we can generate addresses which end in the desired way ?
For example : 1xxxxxxxxxxxxxNAME
If it is possible then whats the command line for windows?
-snip- >vanitygen64.exe -r [Aa]{2}1{2}$ Pattern: [Aa]{2}1{2}$ Address: 19VJ8Pmd5MB4EFJ2ovYX8nurgWiDeAA11 Privkey: 5KWwwpWcKhKcJPgePWCzeM6XKr3cZsTDTuRXiPQCM9HR1b6AaY2
Pattern: [Aa]{2}1{2}$ Address: 1QAkUcikHoeAGgzeg21BMFx627mfntAa11 Privkey: 5KiP18jvZotGWnPWRwXda9TJgKyzhQi48evVv7wMgX4144rcnrq
I didn't understand the last one. Can you explain what do characters inside the brackets indicate ? [Aa] = A or a {2} two symbols, so here it can be AA, Aa, aA or aa 1{2} means two ones. $ must end with so in total the possible results are all addresses that end on one of the following strings AA11 Aa11 aA11 aa11 You could also do [0-9]{6,8}$ which would be 6, 7 or 8 numbers at the end, e.g. Pattern: [0-9]{6,8}$ Address: 1QFjZXE28vaDN3NJdWpfY2GtKH9M279652 Address: 1Q54GaNGcAK2xAGuBteMyfaPyTtE884619 Address: 1PXZrNFjVefRAedPniRGKjMdAFpa933155 Address: 1Pcgz7SrtQn5bU4Kds6xZCDMyZGb393457 Address: 16czd5MXWW6JaojATnesJy2CjcpF818713 Address: 19yxjCfjwCJNfXjT5kkHoF6x7h5R876332 Address: 19EM7rjZqLnxHdooCCzfE6zEwhuX536624
More about regex, e.g. here -> http://www.rexegg.com/regex-quickstart.htmlMake sure the expression is valid for a bitcoin address. You can search for [O0l] without ever finding a result.
|
Im not really here, its just your imagination.
|
|
|
tspacepilot
Legendary
Offline
Activity: 1456
Merit: 1081
I may write code in exchange for bitcoins.
|
|
March 09, 2016, 07:42:25 PM |
|
Make sure the expression is valid for a bitcoin address. You can search for [O0l] without ever finding a result.
That would actually be a good improvement for vanitygen, to do a validation step to ensure that what's being looked for actually could match a bitcoin address. I haven't thought about the completeness of the problem but at the very least you could (as you point out) rule out any expressions which explicitly look for [O0I]. I don't think I have the code checked out at the moment or I'd consider submitting a pull request myself.
|
|
|
|
Timelord2067
Legendary
Offline
Activity: 3794
Merit: 2235
💲🏎️💨🚓
|
|
March 09, 2016, 11:47:46 PM |
|
Make sure the expression is valid for a bitcoin address. You can search for [O0l] without ever finding a result.
That would actually be a good improvement for vanitygen, to do a validation step to ensure that what's being looked for actually could match a bitcoin address. I haven't thought about the completeness of the problem but at the very least you could (as you point out) rule out any expressions which explicitly look for [O0I]. I don't think I have the code checked out at the moment or I'd consider submitting a pull request myself. It does: Invalid Character 'I' in prefix '1BIG'
|
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
March 10, 2016, 08:31:34 AM |
|
not skipping was correct. You'r binary is compiled and ready to go. Now we need to fix the last issue: Thanks is the package nvidia-modprobe installed? if not, install it. Seems like it: # lsmod | grep -i nvidia nvidia 8646656 33 drm 344064 7 i915,drm_kms_helper,nvidia # find / | grep modprobe | grep -i nvidia /etc/modprobe.d/nvidia-graphics-drivers.conf /etc/modprobe.d/nvidia-352_hybrid.conf /lib/nvidia-352/modprobe.conf
The contents of these files: Laptop / # cat /etc/modprobe.d/nvidia-graphics-drivers.conf # This file was installed by nvidia-352 # Do not edit this file manually
blacklist nouveau blacklist lbm-nouveau blacklist nvidia-current blacklist nvidia-173 blacklist nvidia-96 blacklist nvidia-current-updates blacklist nvidia-173-updates blacklist nvidia-96-updates blacklist nvidia-352-updates alias nvidia nvidia_352 alias nvidia-uvm nvidia_352-uvm alias nouveau off alias lbm-nouveau off
Laptop / # cat /etc/modprobe.d/nvidia-352_hybrid.conf # This file was installed by nvidia-352 # Do not edit this file manually
blacklist nouveau blacklist lbm-nouveau alias nouveau off alias lbm-nouveau off
Laptop / # cat /lib/nvidia-352/modprobe.conf # This file was installed by nvidia-352 # Do not edit this file manually
blacklist nouveau blacklist lbm-nouveau blacklist nvidia-current blacklist nvidia-173 blacklist nvidia-96 blacklist nvidia-current-updates blacklist nvidia-173-updates blacklist nvidia-96-updates blacklist nvidia-352-updates alias nvidia nvidia_352 alias nvidia-uvm nvidia_352-uvm alias nouveau off alias lbm-nouveau off I don't know iff the blacklists are relevant. I am running the Nvidia-driver: Judging by this I would say my X-server knows the card: And this is what I have installed: check if this file exists: $ ls -al /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1
does this exist too? $ ls -al /etc/OpenCL/vendors/nvidia.icd if not: $ sudo mkdir -p /etc/OpenCL/vendors $ sudo tee /etc/OpenCL/vendors/nvidia.icd <<< 'libnvidia-opencl.so.1'
I think this is all okay: Laptop ~ # ls -al /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1 lrwxrwxrwx 1 root root 26 Nov 16 20:51 /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1 -> libnvidia-opencl.so.352.63 Laptop ~ # ls -alL /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1 -rw-r--r-- 1 root root 15901968 Nov 8 06:08 /usr/lib/x86_64-linux-gnu/libnvidia-opencl.so.1 Laptop ~ # ls -al /etc/OpenCL/vendors/nvidia.icd -rw-r--r-- 1 root root 22 Nov 8 05:08 /etc/OpenCL/vendors/nvidia.icd Laptop ~ # cat /etc/OpenCL/vendors/nvidia.icd libnvidia-opencl.so.1 Anything else I can do/try? It's probably something really simple once you know it install the nvidia-modprobe package. try to run the miner with sudo, as with a incorrect OpenCL setup, you'll need root to load the nvidia_uvm kernel module. Once loaded you dont need sudo again. Your missing that module, hence the failure.
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
shorena
Copper Member
Legendary
Offline
Activity: 1498
Merit: 1530
No I dont escrow anymore.
|
|
March 10, 2016, 08:38:42 AM |
|
Make sure the expression is valid for a bitcoin address. You can search for [O0l] without ever finding a result.
That would actually be a good improvement for vanitygen, to do a validation step to ensure that what's being looked for actually could match a bitcoin address. I haven't thought about the completeness of the problem but at the very least you could (as you point out) rule out any expressions which explicitly look for [O0I]. I don't think I have the code checked out at the moment or I'd consider submitting a pull request myself. It does: Invalid Character 'I' in prefix '1BIG' I guess it depends on what you actually entered as neiter "small ell" not "big eye" are filtered for me. Are you using -r? $ ./vanitygen -r '1BlG' [154.22 Kkey/s][total 4432640]
./vanitygen -r 1BIG [159.72 Kkey/s][total 2447104]
./vanitygen -r 1BiG Pattern: 1BiG Address: 1BiGFYAr4xegoTRbLfnTKHC9tAdfFgddYA Privkey: 5J4BeUWY3qjVzMzQc49JGMQrpLDUmyKjeA6eHDMcvuY2anKFxYY
|
Im not really here, its just your imagination.
|
|
|
LoyceV
Legendary
Offline
Activity: 3430
Merit: 17376
Thick-Skinned Gang Leader and Golden Feather 2021
|
|
March 10, 2016, 03:14:32 PM Last edit: March 10, 2016, 06:47:01 PM by LoyceV |
|
try to run the miner with sudo, as with a incorrect OpenCL setup, you'll need root to load the nvidia_uvm kernel module. Once loaded you dont need sudo again. Your missing that module, hence the failure.
This fixed it! Running once as root, compiling kernel, and now it runs as user too. From 200-400 kkeys/s (depending on system load) to up to over 7.5 Mkeys/s! Thank you so much, that's 25 times faster on average! Difficulty: 264104224 Compiling kernel, can take minutes...done! Pattern: 1test Address: 1testvSQ7NjT2bjG3Ywv8GkCNCCQmUxcz Privkey: 5HrhdHG7LzJG1k1teTKbGRhNqZzU9LxMsYTUxoNoTmUb7frNmDB Now the search continues It's running at 79 degrees C now, and slowly going up, After cleaning it a bit it runs at 62 degrees C now. Edit: on performance: the GeForce 840M reaches just over 9 Mkeys/s if I close my browsers to reduce CPU (or video?) load.
|
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
March 10, 2016, 06:13:52 PM |
|
try to run the miner with sudo, as with a incorrect OpenCL setup, you'll need root to load the nvidia_uvm kernel module. Once loaded you dont need sudo again. Your missing that module, hence the failure.
This fixed it! Running once as root, compiling kernel, and now it runs as user too. From 200-400 kkeys/s (depending on system load) to up to over 7.5 Mkeys/s! Thank you so much! Difficulty: 264104224 Compiling kernel, can take minutes...done! Pattern: 1test Address: 1testvSQ7NjT2bjG3Ywv8GkCNCCQmUxcz Privkey: 5HrhdHG7LzJG1k1teTKbGRhNqZzU9LxMsYTUxoNoTmUb7frNmDB Now the search continues It's running at 79 degrees C now, and slowly going up, After cleaning it a bit it runs at 62 degrees C now. Edit: on performance: the GeForce 840M reaches just over 9 Mkeys/s if I close my browsers to reduce CPU (or video?) load. you needed root to load the nvidia_uvm kernel module. with the nvidia-modprobe package installed, you can load the kernel module as user too or rather, it gets auto loaded. If you use the GUI, obviously there will be less computing power for the OpenCL stuff. Some browsers use hardware accelerating which hinders oclvanitygen even more. Have fun with vanitygen
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
LoyceV
Legendary
Offline
Activity: 3430
Merit: 17376
Thick-Skinned Gang Leader and Golden Feather 2021
|
|
March 10, 2016, 06:50:35 PM |
|
you needed root to load the nvidia_uvm kernel module. with the nvidia-modprobe package installed, you can load the kernel module as user too or rather, it gets auto loaded.
I skipped this part of your previous comment since I got it working, but it sounds like an improvement. When I google it, it simply says to `apt-get install nvidia-modprobe`, but it doesn't exist on my system. I now know it's something I should still fix, but for now I'm happy I can use it
|
|
|
|
tspacepilot
Legendary
Offline
Activity: 1456
Merit: 1081
I may write code in exchange for bitcoins.
|
|
March 10, 2016, 09:14:55 PM |
|
I wonder if you guys are just using different versions of the software. Perhaps the filtering was added recently? Make sure the expression is valid for a bitcoin address. You can search for [O0l] without ever finding a result.
That would actually be a good improvement for vanitygen, to do a validation step to ensure that what's being looked for actually could match a bitcoin address. I haven't thought about the completeness of the problem but at the very least you could (as you point out) rule out any expressions which explicitly look for [O0I]. I don't think I have the code checked out at the moment or I'd consider submitting a pull request myself. It does: Invalid Character 'I' in prefix '1BIG' I guess it depends on what you actually entered as neiter "small ell" not "big eye" are filtered for me. Are you using -r? $ ./vanitygen -r '1BlG' [154.22 Kkey/s][total 4432640]
./vanitygen -r 1BIG [159.72 Kkey/s][total 2447104]
./vanitygen -r 1BiG Pattern: 1BiG Address: 1BiGFYAr4xegoTRbLfnTKHC9tAdfFgddYA Privkey: 5J4BeUWY3qjVzMzQc49JGMQrpLDUmyKjeA6eHDMcvuY2anKFxYY
|
|
|
|
Timelord2067
Legendary
Offline
Activity: 3794
Merit: 2235
💲🏎️💨🚓
|
|
March 10, 2016, 11:23:47 PM |
|
I wonder if you guys are just using different versions of the software. Perhaps the filtering was added recently?
I'm using oclvanitygen64 and there doesn't appear to be a -r switch.
|
|
|
|
shorena
Copper Member
Legendary
Offline
Activity: 1498
Merit: 1530
No I dont escrow anymore.
|
|
March 11, 2016, 07:01:22 AM |
|
I wonder if you guys are just using different versions of the software. Perhaps the filtering was added recently?
I'm using oclvanitygen64 and there doesn't appear to be a -r switch. Yep, the GPU version cant do regex. Not sure why. Try vanitygen64 -r test
|
Im not really here, its just your imagination.
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
March 11, 2016, 07:34:40 AM |
|
you needed root to load the nvidia_uvm kernel module. with the nvidia-modprobe package installed, you can load the kernel module as user too or rather, it gets auto loaded.
I skipped this part of your previous comment since I got it working, but it sounds like an improvement. When I google it, it simply says to `apt-get install nvidia-modprobe`, but it doesn't exist on my system. I now know it's something I should still fix, but for now I'm happy I can use it well, then you can either load the module yourself with modprobe, or run any OpenCL application with root and quit it again to load the module. $ sudo modprobe nvidia_uvm
if you get any ohter issues, just drop a post or send me a private message.
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
actmyname
Copper Member
Legendary
Offline
Activity: 2562
Merit: 2510
Spear the bees
|
|
March 19, 2016, 10:56:53 PM |
|
Haha, I managed to get lucky on this.
Generated 1ActBTCi5XUMjqnyFxVWgSfE5xWicj8g3o when I was trying to find a non-case-sensitive prefix of "actbtc". It was my first try of that result, in under 10 minutes. Thanks greatly for making this.
If I had more time or much faster computational power I'd go ahead and help other people or generate a full "1actmyname" prefix. (But even the non-case-sensitive of that takes 100+ days at my current speed)
|
|
|
|
LoyceV
Legendary
Offline
Activity: 3430
Merit: 17376
Thick-Skinned Gang Leader and Golden Feather 2021
|
|
March 19, 2016, 11:19:04 PM |
|
If I had more time or much faster computational power I'd go ahead and help other people or generate a full "1actmyname" prefix. (But even the non-case-sensitive of that takes 100+ days at my current speed)
I need 11 days for 50% chance for "1actmyname -i". Are you running on a fast CPU, or on a very slow GPU? If you use a fast CPU now, it may be possible to switch to your video card and get much more speed out of it (for me it added approximately 1 character in the same time). Out of curiousity: what if the vanity pool finds the required address, but adds something bad behind it? Just bad luck for the person who bought the address? My search for 1faucets" ended up with an additional "uck" behind it. If someone pays good money for an address, they won't like it.
|
|
|
|
Timelord2067
Legendary
Offline
Activity: 3794
Merit: 2235
💲🏎️💨🚓
|
|
March 20, 2016, 02:11:38 AM |
|
I wonder if you guys are just using different versions of the software. Perhaps the filtering was added recently?
I'm using oclvanitygen64 and there doesn't appear to be a -r switch. Yep, the GPU version cant do regex. Not sure why. Try vanitygen64 -r test
I just reread the last couple of pages - I didn't know about this feature - I'd use it for middle or especially end of addresses, but the GPU cards can kept doing the front prefix. If I have the "1" eg "1name" will the -r look just at the front?
|
|
|
|
shorena
Copper Member
Legendary
Offline
Activity: 1498
Merit: 1530
No I dont escrow anymore.
|
|
March 20, 2016, 08:02:08 AM |
|
I wonder if you guys are just using different versions of the software. Perhaps the filtering was added recently?
I'm using oclvanitygen64 and there doesn't appear to be a -r switch. Yep, the GPU version cant do regex. Not sure why. Try vanitygen64 -r test
I just reread the last couple of pages - I didn't know about this feature - I'd use it for middle or especially end of addresses, but the GPU cards can kept doing the front prefix. If I have the "1" eg "1name" will the -r look just at the front? Nope. >vanitygen64.exe -r -k 1name Pattern: 1name Address: 1CKNZnaZa2p42woa11name5Deo8WSMnUXa Privkey: 5K7hoViAWPeqcupUFM4PyyNvxQQKaiLfNcTcqxt63wWFe69ai3M
|
Im not really here, its just your imagination.
|
|
|
|