Post
Topic
Board Project Development
Re: Large Bitcoin Collider (Collision Finders Pool)
by
Jude Austin
on 22/01/2019, 14:31:31 UTC
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.

Why?

sudo cpan install JSON

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