Bitcoin Forum
June 23, 2024, 05:29:27 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] Minereum - 🔥 MNE STAKING 🔥 IS LIVE! 💎 CRYPTO BOND 💎 IS NOW LIVE! on: January 30, 2021, 04:51:43 PM

Quote
I very much doubt that you will be able to sell a level 1 address, there are a lot of them ,but there is always a chance, it's up to you to decide whether to sell or not Wink
Not sure if it's worth it... Thank you so much for your info!  Smiley
2  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] Minereum - 🔥 MNE STAKING 🔥 IS LIVE! 💎 CRYPTO BOND 💎 IS NOW LIVE! on: January 30, 2021, 04:26:23 PM
Quote
Well, judging by what it says, most likely you do not have enough ether for payment , the value of gas limit (32.000) is too low  Wink

So I have to set gas limit the default which is about 200000. It's about 17 euros, do I will have any chance to sell it?
3  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] Minereum - 🔥 MNE STAKING 🔥 IS LIVE! 💎 CRYPTO BOND 💎 IS NOW LIVE! on: January 30, 2021, 08:15:55 AM
Just remember too about Minereum... I own 30 Level 1 Genesis addresses, so until I will have the ability to upgrade, I attempt to place for sale one of them (here: https://www.minereum.com/v2/myaddress) at 'Set Genesis Address For Sale' field, when I connect it with metamask and complete the transaction I lost the transactions fees because of this error: https://etherscan.io/tx/0xbf22236c2e2505e01b1fa99b6fabe168db3bdd3be9688258bebeaa254bbc8298

So is there anyone here to tell us, this is scam or legit?
4  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [AIRDROP][IEO] DAIN.AI Official AIRDROP! 🚀 $100,000 in DAINE Available! on: January 17, 2020, 07:36:12 PM
#PROOF OF REGISTRATION

Twitter link: https://twitter.com/stergosfrag
Facebook link: https://www.facebook.com/StergosKos
Telegram Username: @stergosfrag
ETH Wallet: 0xaf1da4702f3a32a99c41cc684d3eb9580d6a768d
5  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: November 14, 2019, 06:56:33 PM
Hello, trying to receive email notifications when FOUND... hook-find using mutt.
When I run "mutt -s 'LBC - FOUND!!!' -- "myemail@gmail.com" < ~/Documents/LBC/FOUND.txt" I receive the email.
Problem is that I don't receive email when something found. I have created a file lbchook.sh and put inside as you mention to the manual the following code:
Code:
#!/bin/bash

mutt -s 'LBC - FOUND!!!' -- "myemail@gmail.com" < ~/Documents/LBC/FOUND.txt

Then make it executable "chmod +x lbchook.sh" and store it to LBC directory where the LBC perl is located.

When I test it using "./LBC -x" doesn't receive email. This is write 4 sample records, it should send the email right?

Should I move the file lbchook.sh at different location?
Can someone tell me what I am doing wrong please?

Thanks in advance!
6  Bitcoin / Development & Technical Discussion / Re: Super BrainFlayer 2019 - Enormous Blooms, Gigantic Text-Files, all BTC ADDRESSES on: February 05, 2019, 04:31:56 PM
Here's an overview of the new brainflayer-2019, I wrote much of this code in 2017, but essentially rewrote brain-flayer,

first some terms there are keys ( private keys, usually hex, but often in wif (base58) for humans, there addresses which are public-key, which are frequently hashed and converted to base58 where they become the common btc-address, in 'hacking' its best of course to work in the world of pure-hex for everything,  the WIF both addr/priv/pub keys that display is just for user usage. Of course if your going on line you need to generally use WIF format for most online database's to display history address,
What's new

1.) Full support for 64 bit, that includes the bloom filters, before they were limited to 4gb is which  a search space of about 50 million keys, now with 16gb blooms you can search 200M addresses all at once ( remember here the GOAL of brainflayer is to run through possible key-space and look to see if that key's address is 'hot', but 'hot' I mean containing any value in history

2. Extensive work in addition to new hoptions -H and -P, where -H is for halt, and -P is for private key, the -H option tells brainflayer how long to run in terms of input before it re-cycles, this is important for batch file automated running, where you don't want endless running. -P causes BF to output all private-key information this is very important to to build a database of all Address/Private Key 'Pairing'

Remember what we're doing here is building a database to relate all btc addresses used in history of btc, and they're private-key/public-key information.

Also important is the public-key, as often it is ignored, but for advanced hacking I call 'super-van' because essentially I completely rewrote and gutted vanity gen, and gave it a single purpose of GPU hacking, but it needs the data from super-flayer.

...

Sometimes I will write, brainflayer sometimes 'super-flayer', there are many versions, I think this is the 3rd iteration of the BF re-write, all options have been modified

What's import

-b , the bloom filter your using is very important

-c u,c,x ; u & c of course are common in BTC, but 'x' is very important because that is the raw format, and often the 'raw' is the best information

-t sha256 is is most common a default, most of these are no longer used, the keccak does work, it is possible to hack ethereum using this tool, I did it, but there is so little 'coin' worth finding, its really not worth the bother

-x is very important here we tell SBF ( super BF  ) that the input is 'hex', now what this means is that instead of converting 'passwords' we're passing the 'hex' for the passwords directly, this means you can use your own encoding scheme and then let SBF see if that 'key' was ever used to generate an address. This is very important for hacking the new 2048 scheme where you have 8-words from a dictionary, and they're hashed and combined

-k, -n are useful for baby-step, giant step DLP algos where you have a plan to hack a particular private-key ( address pair )

-B batch say's how many private-keys do I process on every cycle default is 4096 which is fine, if you have a 32GB or larger ram system, then go for 32k o as you wish, when using huge arrays it can make the ESDSA algos more efficient but you need massive memory.

-I I think this is too slow, essentially this is just telling SBF to run from nth private key and increment ( can be controlled ) and see if that priv-key matches anything in the bloom filter ( your list of addresses of value ), super-van is much better than this and 5-10x faster than the CPU


 ./brainflayer3 -h
Usage: ./brainflayer3 [OPTION]...

 -a                          open output file in append mode
 -b FILE                     check for matches against bloom filter FILE
 -f FILE                     verify matches against sorted hash160s in FILE
 -i FILE                     read from FILE instead of stdin
 -o FILE                     write to FILE instead of stdout
 -c TYPES                    use TYPES for public key to hash160 computation
                             multiple can be specified, for example the default
                             is 'uc', which will check for both uncompressed
                             and compressed addresses using Bitcoin's algorithm
                             u - uncompressed address
                             c - compressed address
                             e - ethereum address
                             x - most signifigant bits of x coordinate
 -t TYPE                     inputs are TYPE - supported types:
                             sha256 (default) - classic brainwallet
                             sha3   - sha3-256
                             priv   - raw private keys (requires -x)
                             warp   - WarpWallet (supports -s or -p)
                             bwio   - brainwallet.io (supports -s or -p)
                             bv2    - brainv2 (supports -s or -p) VERY SLOW
                             rush   - rushwallet (requires -r) FAST
                             keccak - keccak256 (ethercamp/old ethaddress)
                             camp2  - keccak256 * 2031 (new ethercamp)
 -x                          treat input as hex encoded
 -s SALT                     use SALT for salted input types (default: none)
 -p PASSPHRASE               use PASSPHRASE for salted input types, inputs
                             will be treated as salts
 -r FRAGMENT                 use FRAGMENT for cracking rushwallet passphrase
 -I HEXPRIVKEY               incremental private key cracking mode, starting
                             at HEXPRIVKEY (supports -n) FAST
 -k K                        skip the first K lines of input
 -n K/N                      use only the Kth of every N input lines
 -B                          batch size for affine transformations
                             must be a power of 2 (default/max: 4096)
 -w WINDOW_SIZE              window size for ecmult table (default: 16)
                             uses about 3 * 2^w KiB memory on startup, but
                             only about 2^w KiB once the table is built
 -m FILE                     load ecmult table from FILE
                             the ecmtabgen tool can build such a table
 -v                          verbose - display cracking progress
 -P                          print private key in output
 -H                          Halt at line
 -h                          show this help


...


Actually using SBF requires that you have built your bloom-filter files, its best to have many blooms, like 100Msatoshi.blm, 10BTC.blm, 1MSatoshi.blm, I think there are 100Million satoshi to a btc, so 0.01btc is 1m-sat, which gets down to almost dust, but I like to go for any address ever used that contained any kind of value, as in fact they do get user again, and over&over,

-w is worth playing around, I think its designed for older pc's with limited memory and power
-m is much the same, when your running SBF for hours like this model is designed, it doesn't matter to pre-compute the tables

Remember the original BF was designed to take a database of passwords, and convert them to hex with SHA, and then to use that as a private key, and look up the address with Ecdsa, and then if an address match is found in the bloom the private-key/address/password is printed to screen that was the original model.

The way that I used SBF is more to generate data, and patterns used for ML ( LSTM/RNN ) where you want to learn about real prior used keys, public-keys, and addresses and look for patterns, cyclic or FFT that can be fed into DLP algo's.

sure  you will always find BTC that has real-value, but IMHO that is not the goal here, this is really about learning the patterns of bitcoin private-key/address pairs

SVM can allow you to catalogue, the different systems to compute private keys, there are many companys that provide 'wallets', and this stuff can be correlated so you start seeing the patterns of different schemes used to generate the private-keys and addresses

Also much can be done with public-keys that are found in the early pre2012 block-chain, and these are the btc of real value on the chain

Hi, I'm currently working on latest version of Kali, where brainflayer is not compile successful.
Are you rewrote that script, working on the latest version of Kali?

I have searching about this more than one month.
Please let me know.

Thanks in advance!
7  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: February 04, 2019, 08:35:01 AM
Intel is on-board and will get the same speed as CPU.

You can only really use the Nvidia card.

I see... great thank you once again!
8  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: February 01, 2019, 07:31:18 AM

If I recall correctly, the initial test only uses CPU.

Try running it for real and see if you get different results.

I see... I have test it the last 2 days but I'm not sure how better is running that before with only CPU.
While trying to run my machine at maximum power, I have notice that there are gpu options which I do not understand well how to use them.
I have 2 gpu on my machine, 1 intel and 1 nvidia.
This is the command I'm using right now:

Code:
./LBC -id username -s password --gpu -c 4 -t 600 -delay 180

I guess using the command above it's not using both gpu or maybe use intel which has less power than nvidia.

How to use both gpu? Or if I had to use only 1 gpu, then how to know is using the best which is nvidia?

*Also at manual it's says that e.g. -t 10 = 10 minutes, as far I test it -t 60 = 5 minutes, maybe is a bug?
Also try it with 1:0, it gives me the same results.
What I want is to give it a delay 3 minutes after 1 hour running.

Thanks again.
9  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: January 30, 2019, 03:17:41 PM

You have to set a secret (Password) but you also might still have to be on the GPU list.

You will have to ask Rico.

You have absolutely right. I set password and gpu has been authorized thank you!

Code:
GPU authorized: yes
Will use 4 CPUs.
Ask for work... got blocks [33644116996-33644119619] (2751 Mkeys)
2 just got out of the pool with exit code: 255
1 just got out of the pool with exit code: 255
0 just got out of the pool with exit code: 255
3 just got out of the pool with exit code: 255
Sending invalidation info.

However even if I have enable gpu, the speed is the same when I make a test.

Code:
./LBC -x
Will use 4 CPUs.
Testing mode. Using page 0, turning off looping.
Benchmark info not found - benchmarking... done.
Your speed is roughly 797883 keys/s per CPU core.
o
Test ok. Your test results were stored in FOUND.txt.
Have a look and then you may want to remove the file.
2d17543d32448acc7a1c43c5f72cd5be459ab302:u:priv:0000000000000000000000000000000000000000000000000000000000000001 + 0x5e
02e62151191a931d51cdc513a86d4bf5694f4e51:c:priv:0000000000000000000000000000000000000000000000000000000000000001 + 0x65
9d74ffdb31068ca2a1feb8e34830635c0647d714:u:priv:00000000000000000000000000000000000000000000000000000000000f9001 + 0xf8c
3d6871076780446bd46fc564b0c443e1fd415beb:c:priv:00000000000000000000000000000000000000000000000000000000000f9001 + 0xf8c
Ending test run.

Same speed I had before enable gpu, why speed isn't increased?

Thanks in advance.
10  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: January 30, 2019, 11:44:10 AM
Hello,

I have just installed on linux machine, works fine except that is not authorize my CPU.

Code:
./LBC --gpu
GPU authorized: no
Will use 4 CPUs.
Ask for work... Server doesn't like us. Answer: wrong secret.


My Nvidia drivers are already installed.

Code:
ubuntu-drivers devices
== /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0 ==
modalias : pci:v000010DEd0000139Bsv000017AAsd00003802bc03sc02i00
vendor   : NVIDIA Corporation
model    : GM107M [GeForce GTX 960M]
driver   : nvidia-driver-390 - distro non-free recommended
driver   : xserver-xorg-video-nouveau - distro free builtin

I have install "nvidia-driver-390" driver.

My gpu is not supported or I have done something wrong?

Thanks in advance!
11  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: January 22, 2019, 03:44:39 PM
Quote
sudo apt-get install make

edit: sudo apt-get install build-essential

Thanks for helping me, appreciate it!

JSON issue seems to be resolved at vmware, here is what I get know:

Code:
sterg@ubuntu:~/Downloads$ ./LBC -x
Will use 2 CPUs.
Testing mode. Using page 0, turning off looping.
Benchmark info not found - benchmarking... ./kardashev-haswell: error while loading shared libraries: libOpenCL.so.1: cannot open shared object file: No such file or directory
Generator validity check failed. Expected: 5 or 7, Got: 0
With output:
--

sudo apt-get install ocl-icd-opencl-dev


Thousand thanks dear Jude!!!

Code:
sterg@ubuntu:~/Downloads$ ./LBC -x
Will use 2 CPUs.
Testing mode. Using page 0, turning off looping.
Benchmark info not found - benchmarking... done.
Your speed is roughly 804993 keys/s per CPU core.
o
Test ok. Your test results were stored in FOUND.txt.
Have a look and then you may want to remove the file.
2d17543d32448acc7a1c43c5f72cd5be459ab302:u:priv:0000000000000000000000000000000000000000000000000000000000000001 + 0x5e
02e62151191a931d51cdc513a86d4bf5694f4e51:c:priv:0000000000000000000000000000000000000000000000000000000000000001 + 0x65
9d74ffdb31068ca2a1feb8e34830635c0647d714:u:priv:00000000000000000000000000000000000000000000000000000000000f9001 + 0xf8c
3d6871076780446bd46fc564b0c443e1fd415beb:c:priv:00000000000000000000000000000000000000000000000000000000000f9001 + 0xf8c
Ending test run.
12  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: January 22, 2019, 03:33:21 PM
Quote
sudo apt-get install make

edit: sudo apt-get install build-essential

Thanks for helping me, appreciate it!

JSON issue seems to be resolved at vmware, here is what I get know:

Code:
sterg@ubuntu:~/Downloads$ ./LBC -x
Will use 2 CPUs.
Testing mode. Using page 0, turning off looping.
Benchmark info not found - benchmarking... ./kardashev-haswell: error while loading shared libraries: libOpenCL.so.1: cannot open shared object file: No such file or directory
Generator validity check failed. Expected: 5 or 7, Got: 0
With output:
--
13  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: January 22, 2019, 02:36:21 PM
I chmod
Code:
chmod +x LBC
and make LBC executable. But now new problem comes up:

Code:
JSON not found - installing it.
Loading internal null logger. Install Log::Log4perl for logging messages

But fail to install it.

Why?
[/quote]

sudo cpan install JSON

I install all of the requirements using cpan instead of the LBC binary. I feel like it's faster.
[/quote]

It's fail:

Code:
sterg@LAPTOP:~$ sudo cpan install JSON
Loading internal null logger. Install Log::Log4perl for logging messages
Reading '/home/sterg/.cpan/Metadata'
  Database was generated on Tue, 22 Jan 2019 13:17:03 GMT
Running install for module 'JSON'
Checksum for /home/sterg/.cpan/sources/authors/id/I/IS/ISHIGAKI/JSON-4.01.tar.gz ok
'YAML' not installed, will not store persistent state
Configuring I/IS/ISHIGAKI/JSON-4.01.tar.gz with Makefile.PL
Welcome to JSON (v.4.01)
=============================

 ** BACKWARD INCOMPATIBILITY **

Since version 2.90, stringification (and string comparison) for
JSON::true and JSON::false has not been overloaded. It shouldn't
matter as long as you treat them as boolean values, but a code that
expects they are stringified as "true" or "false" doesn't work as
you have expected any more.

    if (JSON::true eq 'true') {  # now fails

    print "The result is 1 now."; # => The result is 1 now.

And now these boolean values don't inherit JSON::Boolean, either.
When you need to test a value is a JSON boolean value or not, use
JSON::is_bool function, instead of testing the value inherits
a particular boolean class or not.

Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for JSON
Writing MYMETA.yml and MYMETA.json
  ISHIGAKI/JSON-4.01.tar.gz
  /usr/bin/perl Makefile.PL INSTALLDIRS=site -- OK
Running make for I/IS/ISHIGAKI/JSON-4.01.tar.gz
---- Unsatisfied dependencies detected during ----
----         ISHIGAKI/JSON-4.01.tar.gz        ----
    JSON::XS [requires,optional]
  ISHIGAKI/JSON-4.01.tar.gz
  make -- NOT OK
  No such file or directory
Running install for module 'JSON::XS'
Checksum for /home/sterg/.cpan/sources/authors/id/M/ML/MLEHMANN/JSON-XS-4.0.tar.gz ok
---- Unsatisfied dependencies detected during ----
----        MLEHMANN/JSON-XS-4.0.tar.gz       ----
    Canary::Stability [build_requires]
Running install for module 'Canary::Stability'
Checksum for /home/sterg/.cpan/sources/authors/id/M/ML/MLEHMANN/Canary-Stability-2012.tar.gz ok
Configuring M/ML/MLEHMANN/Canary-Stability-2012.tar.gz with Makefile.PL
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for Canary::Stability
Writing MYMETA.yml and MYMETA.json
  MLEHMANN/Canary-Stability-2012.tar.gz
  /usr/bin/perl Makefile.PL INSTALLDIRS=site -- OK
Running make for M/ML/MLEHMANN/Canary-Stability-2012.tar.gz
  MLEHMANN/Canary-Stability-2012.tar.gz
  make -- NOT OK
  No such file or directory
  MLEHMANN/JSON-XS-4.0.tar.gz
  Has already been unwrapped into directory /home/sterg/.cpan/build/JSON-XS-4.0-9
Warning: Prerequisite 'Canary::Stability => 0' for 'MLEHMANN/JSON-XS-4.0.tar.gz' failed when processing 'MLEHMANN/Canary-Stability-2012.tar.gz' with 'make => NO'. Continuing, but chances to succeed are limited.
Configuring M/ML/MLEHMANN/JSON-XS-4.0.tar.gz with Makefile.PL
Can't locate Canary/Stability.pm in @INC (you may need to install the Canary::Stability module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at Makefile.PL line 4.
BEGIN failed--compilation aborted at Makefile.PL line 4.
Warning: No success on command[/usr/bin/perl Makefile.PL INSTALLDIRS=site]
  MLEHMANN/JSON-XS-4.0.tar.gz
  /usr/bin/perl Makefile.PL INSTALLDIRS=site -- NOT OK
14  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: January 22, 2019, 02:28:30 PM
Hey there, I'm new on linux. Since yesterday I am running LBC at vmware but I don't really like it because vmware tools doesn't work for copy-paste, there is not even a scrollbar on console. So I have installed Ubuntu a new machine on vmware  and all required packages as you mention on installation pages.

I have LBC perl file at downloads folder. From there I open the terminal.

I don't know what I have doing wrong but when I type:
Code:
sudo ./LBC -h

I get:
Code:
sudo: ./LBC: command not found

Installation of the packages progress:

sudo apt-get install libgmp3-dev
-
sudo apt-get update
sudo apt-get install libssl-dev
-
sudo apt install gcc
-
sudo apt install make
-
wget https://lbc.cryptoguru.org/static/client/LBC

I really like to make this work right, once I a planning to run this for a long time.

Any help would me appreciated.

Thanks in advance!

EDIT

Also tried the method via WLS and I got exactly the same issue!

Code:
test@LAPTOP:~$ ./LBC -h
-bash: ./LBC: Permission denied
test@LAPTOP:~$ sudo ./LBC -h
sudo: ./LBC: command not found



You have to set permissions:

sudo chmod 755 LBC

Should do the trick but don't put anything personal/private on that VM.


I chmod
Code:
chmod +x LBC
and make LBC executable. But now new problem comes up:

Code:
JSON not found - installing it.
Loading internal null logger. Install Log::Log4perl for logging messages

But fail to install it.

Code:
sterg@LAPTOP:~$ ./LBC -u
JSON not found - installing it.
Loading internal null logger. Install Log::Log4perl for logging messages
Can't locate Canary/Stability.pm in @INC (you may need to install the Canary::Stability module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at Makefile.PL line 4.
BEGIN failed--compilation aborted at Makefile.PL line 4.
LWP::UserAgent not found - installing it.
Loading internal null logger. Install Log::Log4perl for logging messages
Warning: prerequisite Encode::Locale 0 not found.
Warning: prerequisite File::Listing 6 not found.
Warning: prerequisite HTML::Entities 0 not found.
Warning: prerequisite HTML::HeadParser 0 not found.
Warning: prerequisite HTTP::Cookies 6 not found.
Warning: prerequisite HTTP::Daemon 6 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite HTTP::Negotiate 6 not found.
Warning: prerequisite HTTP::Request 6 not found.
Warning: prerequisite HTTP::Request::Common 6 not found.
Warning: prerequisite HTTP::Response 6 not found.
Warning: prerequisite HTTP::Status 6 not found.
Warning: prerequisite LWP::MediaTypes 6 not found.
Warning: prerequisite Net::HTTP 6.07 not found.
Warning: prerequisite Test::Fatal 0 not found.
Warning: prerequisite Test::Needs 0 not found.
Warning: prerequisite Test::RequiresInternet 0 not found.
Warning: prerequisite Try::Tiny 0 not found.
Warning: prerequisite URI 1.10 not found.
Warning: prerequisite URI::Escape 0 not found.
Warning: prerequisite WWW::RobotRules 6 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite HTML::Tagset 3 not found.
Warning: prerequisite Encode::Locale 1 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite IO::HTML 0 not found.
Warning: prerequisite LWP::MediaTypes 6 not found.
Warning: prerequisite Try::Tiny 0 not found.
Warning: prerequisite URI 1.10 not found.
Warning: prerequisite Test::Needs 0 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite HTTP::Headers::Util 6 not found.
Warning: prerequisite HTTP::Request 0 not found.
Warning: prerequisite HTTP::Response 0 not found.
Warning: prerequisite URI 0 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite HTTP::Request 6 not found.
Warning: prerequisite HTTP::Response 6 not found.
Warning: prerequisite HTTP::Status 6 not found.
Warning: prerequisite LWP::MediaTypes 6 not found.
Warning: prerequisite HTTP::Headers 6 not found.
Warning: prerequisite URI 0 not found.
Warning: prerequisite Try::Tiny 0.07 not found.
Warning: prerequisite URI 1.10 not found.
Net::SSLeay not found - installing it.
Loading internal null logger. Install Log::Log4perl for logging messages
NA: Unable to build distribution on this platform.
LWP::Protocol::https not found - installing it.
Loading internal null logger. Install Log::Log4perl for logging messages
Warning: prerequisite IO::Socket::SSL 1.54 not found.
Warning: prerequisite LWP::UserAgent 6.06 not found.
Warning: prerequisite Mozilla::CA 20110101 not found.
Warning: prerequisite Net::HTTPS 6 not found.
Warning: prerequisite Test::RequiresInternet 0 not found.

WARNING
No library for handling international domain names found.
It will work but croak if you try to verify an international name against
a certificate.
It's recommended to install either Net::IDN::Encode, Net::LibIDN or URI version>=1.50

Warning: prerequisite Mozilla::CA 0 not found.
Warning: prerequisite Net::SSLeay 1.46 not found.
Invalid LICENSE value 'mozilla_2_0' ignored
Invalid LICENSE value 'mozilla_2_0' ignored
NA: Unable to build distribution on this platform.
Warning: prerequisite Encode::Locale 0 not found.
Warning: prerequisite File::Listing 6 not found.
Warning: prerequisite HTML::Entities 0 not found.
Warning: prerequisite HTML::HeadParser 0 not found.
Warning: prerequisite HTTP::Cookies 6 not found.
Warning: prerequisite HTTP::Daemon 6 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite HTTP::Negotiate 6 not found.
Warning: prerequisite HTTP::Request 6 not found.
Warning: prerequisite HTTP::Request::Common 6 not found.
Warning: prerequisite HTTP::Response 6 not found.
Warning: prerequisite HTTP::Status 6 not found.
Warning: prerequisite LWP::MediaTypes 6 not found.
Warning: prerequisite Net::HTTP 6.07 not found.
Warning: prerequisite Test::Fatal 0 not found.
Warning: prerequisite Test::Needs 0 not found.
Warning: prerequisite Test::RequiresInternet 0 not found.
Warning: prerequisite Try::Tiny 0 not found.
Warning: prerequisite URI 1.10 not found.
Warning: prerequisite URI::Escape 0 not found.
Warning: prerequisite WWW::RobotRules 6 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite HTML::Tagset 3 not found.
Warning: prerequisite Encode::Locale 1 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite IO::HTML 0 not found.
Warning: prerequisite LWP::MediaTypes 6 not found.
Warning: prerequisite Try::Tiny 0 not found.
Warning: prerequisite URI 1.10 not found.
Warning: prerequisite Test::Needs 0 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite HTTP::Headers::Util 6 not found.
Warning: prerequisite HTTP::Request 0 not found.
Warning: prerequisite HTTP::Response 0 not found.
Warning: prerequisite URI 0 not found.
Warning: prerequisite HTTP::Date 6 not found.
Warning: prerequisite HTTP::Request 6 not found.
Warning: prerequisite HTTP::Response 6 not found.
Warning: prerequisite HTTP::Status 6 not found.
Warning: prerequisite LWP::MediaTypes 6 not found.
Warning: prerequisite HTTP::Headers 6 not found.
Warning: prerequisite URI 0 not found.
Warning: prerequisite Try::Tiny 0.07 not found.
Warning: prerequisite URI 1.10 not found.
Parallel::ForkManager not found - installing it.
Loading internal null logger. Install Log::Log4perl for logging messages
Warning: prerequisite Moo 0 not found.
Warning: prerequisite Moo::Role 0 not found.
Warning: prerequisite Test::Warn 0 not found.
Warning: prerequisite Class::Method::Modifiers 1.1 not found.
Warning: prerequisite Devel::GlobalDestruction 0.11 not found.
Warning: prerequisite Module::Runtime 0.014 not found.
Warning: prerequisite Role::Tiny 2.000004 not found.
Warning: prerequisite Sub::Defer 2.003001 not found.
Warning: prerequisite Sub::Quote 2.003001 not found.
Warning: prerequisite Test::Fatal 0.003 not found.
Warning: prerequisite Test::Fatal 0 not found.
Warning: prerequisite Test::Requires 0 not found.
Warning: prerequisite Try::Tiny 0.07 not found.
Warning: prerequisite Sub::Exporter::Progressive 0.001011 not found.

Checking optional features...
inc_bundling_support....disabled
  requires:
    ! inc::latest is not installed

ERRORS/WARNINGS FOUND IN PREREQUISITES.  You may wish to install the versions
of the modules indicated above before proceeding with this installation

Warning: prerequisite Module::Build 0 not found.
Warning: prerequisite Test::Fatal 0.003 not found.
sh: 1: x86_64-linux-gnu-gcc: not found
Couldn't execute x86_64-linux-gnu-gcc -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g "-I/usr/lib/x86_64-linux-gnu/perl/5.26/CORE" -fPIC -c /tmp/f7WRQJKyzD/g9DMbhkavw.c -o /tmp/f7WRQJKyzD/g9DMbhkavw.o: Inappropriate ioctl for device at Makefile.PL line 9.
Warning: prerequisite Sub::Uplevel 0.12 not found.
Term::ReadKey not found - installing it.
Loading internal null logger. Install Log::Log4perl for logging messages
Can't locate JSON.pm in @INC (you may need to install the JSON module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at ./LBC line 92.
BEGIN failed--compilation aborted at ./LBC line 92.

Why?
15  Bitcoin / Project Development / Re: Large Bitcoin Collider (Collision Finders Pool) on: January 22, 2019, 09:10:44 AM
Hey there, I'm new on linux. Since yesterday I am running LBC at vmware but I don't really like it because vmware tools doesn't work for copy-paste, there is not even a scrollbar on console. So I have installed Ubuntu a new machine on vmware  and all required packages as you mention on installation pages.

I have LBC perl file at downloads folder. From there I open the terminal.

I don't know what I have doing wrong but when I type:
Code:
sudo ./LBC -h

I get:
Code:
sudo: ./LBC: command not found

Installation of the packages progress:

sudo apt-get install libgmp3-dev
-
sudo apt-get update
sudo apt-get install libssl-dev
-
sudo apt install gcc
-
sudo apt install make
-
wget https://lbc.cryptoguru.org/static/client/LBC

I really like to make this work right, once I a planning to run this for a long time.

Any help would me appreciated.

Thanks in advance!

EDIT

Also tried the method via WLS and I got exactly the same issue!

Code:
test@LAPTOP:~$ ./LBC -h
-bash: ./LBC: Permission denied
test@LAPTOP:~$ sudo ./LBC -h
sudo: ./LBC: command not found

Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!