Bitcoin Forum
June 17, 2024, 03:46:26 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Do you Accept Komodo ICO conversion vs Reject Komodo ICO conversion and fund new dev team?
Accept - 145 (68.7%)
Reject - 66 (31.3%)
Total Voters: 211

Pages: « 1 ... 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 [339] 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 ... 547 »
  Print  
Author Topic: BTCD is no more  (Read 1328439 times)
Azeh (OP)
Sr. Member
****
Offline Offline

Activity: 441
Merit: 500


View Profile
October 07, 2014, 11:06:12 AM
 #6761

I made some changes to the OP.

If anyone has any further comments or suggestions, let me know.

Thanks
crackfoo
Legendary
*
Offline Offline

Activity: 3500
Merit: 1126



View Profile WWW
October 07, 2014, 11:22:56 AM
 #6762

I made some changes to the OP.

If anyone has any further comments or suggestions, let me know.

Thanks

can you put the updated multipool URL? It should be www.bitcoindark.ca

Also, can you contact Bter and have them update the BTCD "Mining" section with that url? They link to the defunct one but seem to just ignore my requests to update it.

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
Azeh (OP)
Sr. Member
****
Offline Offline

Activity: 441
Merit: 500


View Profile
October 07, 2014, 11:28:30 AM
 #6763

I made some changes to the OP.

If anyone has any further comments or suggestions, let me know.

Thanks

can you put the updated multipool URL? It should be www.bitcoindark.ca

Also, can you contact Bter and have them update the BTCD "Mining" section with that url? They link to the defunct one but seem to just ignore my requests to update it.

Done, thanks Crackfoo.  I'm not someone that has their ear, however maybe someone in the forum could drop them a message.
crackfoo
Legendary
*
Offline Offline

Activity: 3500
Merit: 1126



View Profile WWW
October 07, 2014, 11:30:55 AM
 #6764

I made some changes to the OP.

If anyone has any further comments or suggestions, let me know.

Thanks

can you put the updated multipool URL? It should be www.bitcoindark.ca

Also, can you contact Bter and have them update the BTCD "Mining" section with that url? They link to the defunct one but seem to just ignore my requests to update it.

Done, thanks Crackfoo.  I'm not someone that has their ear, however maybe someone in the forum could drop them a message.

Thanks. Yeah, clearly I'm not either Smiley hopefully someone can get through to them.

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
Cassius
Legendary
*
Offline Offline

Activity: 1764
Merit: 1031


View Profile WWW
October 07, 2014, 03:08:42 PM
 #6765

I'm trying to put together some documentation for the SuperNET API and, as James says, the best way to learn about it is to play with it.
I've got Ubuntu freshly installed on an old computer but linux isn't something I've used much before. Is there a (hopefully very basic) guide to downloading the BTCD daemon so I can tinker with some API calls?
Bitinvestor
Sr. Member
****
Offline Offline

Activity: 470
Merit: 250


View Profile
October 07, 2014, 03:28:29 PM
Last edit: October 07, 2014, 04:54:41 PM by Bitinvestor
 #6766

I'm trying to put together some documentation for the SuperNET API and, as James says, the best way to learn about it is to play with it.
I've got Ubuntu freshly installed on an old computer but linux isn't something I've used much before. Is there a (hopefully very basic) guide to downloading the BTCD daemon so I can tinker with some API calls?

You need to compile it yourself, but it's easy. Install the dependencies:

Code:
sudo apt-get install build-essential
sudo apt-get install libssl-dev
sudo apt-get install libdb++-dev
sudo apt-get install libboost-all-dev
sudo apt-get install libqrencode-dev

Then download the source:

Code:
git clone https://github.com/laowais/bitcoindark

Then compile it:

Code:
cd bitcoindark/src
make -f makefile.unix

If you want the Qt wallet:

Code:
apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev

Then install Qt Creator and open the BitcoinDark-qt.pro file.

That's about it. Let me know if you have a problem.

Those who cause problems for others also cause problems for themselves.
Cassius
Legendary
*
Offline Offline

Activity: 1764
Merit: 1031


View Profile WWW
October 07, 2014, 04:03:10 PM
Last edit: October 07, 2014, 04:19:47 PM by Cassius
 #6767

You need to compile it yourself, but it's easy. Install the dependencies:

...

Then install Qt Creator and open the BitcoinDark-qt.pro file.

That's about it. Let me know if you have a problem.

Thanks, appreciate it. Doing it now, so far so good...
This is all another language to me. This will make for good documentation though.

Edit: Er, where is it? I installed the dependencies and downloaded the source, all ok. But I can't see the bitcoindark directory.
Edit edit: turned out I didn't have git installed, so that fixed it. But what am I making? "No targets specified and no makefile found. Stop."
Bitinvestor
Sr. Member
****
Offline Offline

Activity: 470
Merit: 250


View Profile
October 07, 2014, 04:27:57 PM
 #6768

You need to compile it yourself, but it's easy. Install the dependencies:

...

Then install Qt Creator and open the BitcoinDark-qt.pro file.

That's about it. Let me know if you have a problem.

Thanks, appreciate it. Doing it now, so far so good...
This is all another language to me. This will make for good documentation though.

Edit: Er, where is it? I installed the dependencies and downloaded the source, all ok. But I can't see the bitcoindark directory.
Edit edit: turned out I didn't have git installed, so that fixed it. But what am I making? "No targets specified and no makefile found. Stop."

I shouldn't have said that it's easy  Roll Eyes

Building the Qt wallet is easy, the daemon not so much. Bear with me, I have a Ubuntu box and I'll try to build it myself. If it works then I can give you proper instructions.

Those who cause problems for others also cause problems for themselves.
Cassius
Legendary
*
Offline Offline

Activity: 1764
Merit: 1031


View Profile WWW
October 07, 2014, 04:29:38 PM
 #6769

You need to compile it yourself, but it's easy. Install the dependencies:

...

Then install Qt Creator and open the BitcoinDark-qt.pro file.

That's about it. Let me know if you have a problem.

Thanks, appreciate it. Doing it now, so far so good...
This is all another language to me. This will make for good documentation though.

Edit: Er, where is it? I installed the dependencies and downloaded the source, all ok. But I can't see the bitcoindark directory.
Edit edit: turned out I didn't have git installed, so that fixed it. But what am I making? "No targets specified and no makefile found. Stop."

I shouldn't have said that it's easy  Roll Eyes

Building the Qt wallet is easy, the daemon not so much. Bear with me, I have a Ubuntu box and I'll try to build it myself. If it works then I can give you proper instructions.

Haha, thanks. James said this would be 'relatively painless'. Smiley
Bitinvestor
Sr. Member
****
Offline Offline

Activity: 470
Merit: 250


View Profile
October 07, 2014, 05:00:56 PM
 #6770

I updated the instructions and you should try it, maybe it works for you. It doesn't work for me. I get this error message:

Quote
make -f makefile.unix
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/claus/bitcoindark/src -I/home/claus/bitcoindark/src/obj -DUSE_UPNP=0 -I/home/claus/bitcoindark/src/leveldb/include -I/home/claus/bitcoindark/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:273:1: fatal error: opening dependency file obj/alert.d: No such file or directory

I'm not a programmer and I don't know how to proceed.

Those who cause problems for others also cause problems for themselves.
Cassius
Legendary
*
Offline Offline

Activity: 1764
Merit: 1031


View Profile WWW
October 07, 2014, 05:11:28 PM
 #6771

I updated the instructions and you should try it, maybe it works for you. It doesn't work for me. I get this error message:

Quote
make -f makefile.unix
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/claus/bitcoindark/src -I/home/claus/bitcoindark/src/obj -DUSE_UPNP=0 -I/home/claus/bitcoindark/src/leveldb/include -I/home/claus/bitcoindark/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:273:1: fatal error: opening dependency file obj/alert.d: No such file or directory

I'm not a programmer and I don't know how to proceed.

No, same problem with me. Thanks for trying.

Anyone else have any ideas?
crackfoo
Legendary
*
Offline Offline

Activity: 3500
Merit: 1126



View Profile WWW
October 07, 2014, 05:11:43 PM
 #6772

I updated the instructions and you should try it, maybe it works for you. It doesn't work for me. I get this error message:

Quote
make -f makefile.unix
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/claus/bitcoindark/src -I/home/claus/bitcoindark/src/obj -DUSE_UPNP=0 -I/home/claus/bitcoindark/src/leveldb/include -I/home/claus/bitcoindark/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:273:1: fatal error: opening dependency file obj/alert.d: No such file or directory

I'm not a programmer and I don't know how to proceed.

mkdir obj

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
Cassius
Legendary
*
Offline Offline

Activity: 1764
Merit: 1031


View Profile WWW
October 07, 2014, 05:19:08 PM
 #6773

I updated the instructions and you should try it, maybe it works for you. It doesn't work for me. I get this error message:

Quote
make -f makefile.unix
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/claus/bitcoindark/src -I/home/claus/bitcoindark/src/obj -DUSE_UPNP=0 -I/home/claus/bitcoindark/src/leveldb/include -I/home/claus/bitcoindark/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:273:1: fatal error: opening dependency file obj/alert.d: No such file or directory

I'm not a programmer and I don't know how to proceed.

mkdir obj

Something seems to be happening...
Taking its time and it looked like there might have been an error message along the way.

Sad
fatal error: miniupnpc/miniwget.h: No such file or directory
#include <miniupnpc/miniwget.h>
Bitinvestor
Sr. Member
****
Offline Offline

Activity: 470
Merit: 250


View Profile
October 07, 2014, 05:33:22 PM
 #6774

fatal error: miniupnpc/miniwget.h: No such file or directory
#include <miniupnpc/miniwget.h>

Mine compiled! You're missing a dependency. Try

Code:
sudo apt-get install libminiupnpc-dev

Those who cause problems for others also cause problems for themselves.
Cassius
Legendary
*
Offline Offline

Activity: 1764
Merit: 1031


View Profile WWW
October 07, 2014, 05:38:55 PM
 #6775

fatal error: miniupnpc/miniwget.h: No such file or directory
#include <miniupnpc/miniwget.h>

Mine compiled! You're missing a dependency. Try

Code:
sudo apt-get install libminiupnpc-dev

Thanks, trying it now.

My linux machine is in a small room off my young daughter's room, so I can't really use it after she's asleep. While I have your tech support here, is there an easy way to connect to it from my (Windows 7) laptop, so I can play with the daemon at night?
Bitinvestor
Sr. Member
****
Offline Offline

Activity: 470
Merit: 250


View Profile
October 07, 2014, 05:41:56 PM
 #6776

My linux machine is in a small room off my young daughter's room, so I can't really use it after she's asleep. While I have your tech support here, is there an easy way to connect to it from my (Windows 7) laptop, so I can play with the daemon at night?

It can be done but I have no expertise in it. Maybe somebody else knows how to do it.

Those who cause problems for others also cause problems for themselves.
crackfoo
Legendary
*
Offline Offline

Activity: 3500
Merit: 1126



View Profile WWW
October 07, 2014, 05:52:35 PM
 #6777

fatal error: miniupnpc/miniwget.h: No such file or directory
#include <miniupnpc/miniwget.h>

Mine compiled! You're missing a dependency. Try

Code:
sudo apt-get install libminiupnpc-dev

Thanks, trying it now.

My linux machine is in a small room off my young daughter's room, so I can't really use it after she's asleep. While I have your tech support here, is there an easy way to connect to it from my (Windows 7) laptop, so I can play with the daemon at night?

connect to it using SSH (PuTTY). Download PuTTY then plug in the IP of the box and login.

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
Cassius
Legendary
*
Offline Offline

Activity: 1764
Merit: 1031


View Profile WWW
October 07, 2014, 05:53:50 PM
 #6778

Thanks crackfoo, will give that a go when I've eventually got this compiled. Another error for now:

opening dependency file obj/zerocoin/Accumulator.d: No such file or directory
Bitinvestor
Sr. Member
****
Offline Offline

Activity: 470
Merit: 250


View Profile
October 07, 2014, 05:55:18 PM
 #6779

Thanks crackfoo, will give that a go when I've eventually got this compiled. Another error for now:

opening dependency file obj/zerocoin/Accumulator.d: No such file or directory

Code:
mkdir obj/zerocoin

Those who cause problems for others also cause problems for themselves.
Cassius
Legendary
*
Offline Offline

Activity: 1764
Merit: 1031


View Profile WWW
October 07, 2014, 05:57:00 PM
 #6780

Thanks crackfoo, will give that a go when I've eventually got this compiled. Another error for now:

opening dependency file obj/zerocoin/Accumulator.d: No such file or directory

Code:
mkdir obj/zerocoin

Thanks. Why do I need to do that but you didn't?
That looks like it's compiled now. Thanks for your help. Will look forward to playing with it now.
Pages: « 1 ... 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 [339] 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 ... 547 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!