<center>https://i57.servimg.com/u/f57/13/44/18/95/compil14.jpg</center> **For a Spanish version of this article** [click here please](https://steemit.com/busy/@cpol/como-compilar-tu-propia-billetera-devcoin-en-ubuntu-18-04) πππ <div class="text-justify"> What a wonderful season to enter in the magical world of Free Software/Open Source World (FLOSS) and cryptocoins! <p></p> Many people are attracted to the cryptocoin world for different reasons. Some want to tinker with something new like the blockchain or maybe you want to make some extra coins to complement your income. It doesnβt really matter why you are here, but maybe you are struggling to enter and you donβt know how to test the waters. That makes Devcoin a great entrance into this world without much hassle and it is a good entry coin for those with zero experience, as well as an interesting investment for those more knowledgeable on this topic. <p></p> For that reason, I think the FLOSS approach for me is ideal, because it can teach you the basics and with patience you can achieve a lot. In that sense, for this tutorial I will be using a Kubuntu 18.04 LTS OS as a starting point to compile our wallet, but any Ubuntu flavor would do without any problem. Heck!, I even think that any Debian-based Distribution can be used following these steps. <p></p> The scope of this tutorial is basically for people who havenβt compiled something before, however, Iβm aware that this may appear cumbersome for the very beginner. I will try to make it the more simple I can and show you with pictures and clear steps what you can do. For those who are more advanced and seasoned in compiling software, you may find this a little bit boring, but I will try to highlight the main steps to make it faster to follow. For you, advanced user, at the end I had included an easy step-by-step guide. <p></p> β **Warning:** Itβs important that you try to compile it in a fresh installed environment or at least choose an OS that hasnβt being upgraded yet. The main reason for this is that if you upgrade from one distribution to another, you could be dragging dependency problems that can give you headaches later. If you happened to be in this situation, you could try to compile it inside a controlled environment like a virtualization program for example, but that would be a subject for another tutorial. <center></center> ## Letβs begin! π» You basically will need three things once inside the computer OS: A terminal or command line, a bunch of tools that can be installed from the command line and the devcoin wallet source code and a some spare time! 1- First, open a terminal, in this case Iβm using Konsole from the main program menu (Fig.01). You can choose any software you like that came with your distribution. <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen15.jpg</center><center>*Fig.01 Open the terminal*</center><br> 2- Once it has opened up (Fig.02), you need to install first these new packages (Fig.03): ```sudo apt-get install git libdb++-dev libdb-dev libboost-all-dev build-essential libtool pkg-config libssl-dev``` <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen14.jpg</center><center>*Fig.02 Here we are going to execute everything!*</center><br> <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen12.png</center><center>*Fig.03 The tools that we need*</center><br> Once the installation has finished, and everything looks fine and dandy, we can now download the source code! I strongly recommend you to try a stable branch. Nevertheless, this can be done with any cutting-edge source code inside the devcoin wallet repository. 3- There are two ways to download it. The simplest one is downloading it through git and the second one is downloading it as a zip file. In order to do it through git we use the same terminal window and write the following command: ```git clone https://github.com/devcoin/core.git``` If you want you can go to https://github.com/devcoin/core/archive/master.zip and unzipit anywhere you want. For the sake of this tutorial, we will continue as if we have used the git method (Fig.04). <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen13.png</center><center>*Fig.04 Downloading the source code...*</center><br> 4- Once the program has been downloaded, you can enter the directory writing in your terminal: ```cd core/``` In there you can see using the command ```ls``` a bunch of files and more directories. The blue ones are directories and the white ones plain files. 5- Now write the following command: ```cd src/``` This command will take you into the main source program directory, where the compiling of the core wallet, called devcoind, will be built (Fig.05). <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen15.png</center><center>*Fig.05 First enter in core, then in src and finally execute the ls command to watch whatβs inside*</center><br> 6- As a way to assure you that the main branch is cleaned of a previous compilation, you should always execute the following command: ```make -f makefile.unix clean``` Usually when the source code has just been downloaded, it came with nothing and it will give you an error, but thatβs fine (Fig.06). This step is necessary to assess that the source code hasnβt been compiled before, so if at this point you got an error, itβs because itβs clean! Yay! π However, itβs useful to always execute this step as a way to assure yourself to correctly setup the code before compile anything. Itβs a good practice in my opinion. π <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen14.png</center><center>*Fig.06 That error does look like a bad thing, but it isnβt. So, donβt worry!*</center><br> 7- Then we will begin the real deal. Inside the terminal enter the following command: ```make -f makefile.unix USE_UPNP=-``` Now, this will take some time depending on your computer or your configuration. Usually in a slow computer it will take around 30 minutes to compile, or two hours in a virtualization environment using a slow computer. Maybe you got a cutting-edge computer with a great performance and probably will take it much less time to compile the source code, but for this tutorial, expect at least 30 minutes. (Fig.07) <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen16.png</center><center>*Fig.07 We are compiling, humans...*</center><br> When it finishes, itβs done! You wonβt see any message, it just returns to the command line without any problem! (Fig.08) If it ends with an error, it probably is because of a dependency problem or you need another package that isnβt installed correctly, π΅ but hopefully if you followed these steps, you wonβt find any. Fingers crossed! π€π€π€ <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen18.png</center><center>*Fig.08 The compilation processβs end: Note it finishes returning to the command line without any error on display*</center><br> 8- To finish the devcoind compilation we will write the following command: ```strip devcoind``` That removes symbols from the object files, that in other words is to get rid of things not necessary for the compilation process, slimming down the binary file. Now, we have to compile the GUI! Without it, you are stuck with the command line and we donβt want that huh? π€ 9- So, in order to compile the GUI, we need new dependencies installed. So, we write the following command: ```sudo apt-get install libqt4-dev qt4-qmake libqt5gui5 libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev libminiupnpc-dev libpng-dev libqrencode-dev``` 10- Once it finishes, we need to go back to the ```core/``` directory and exit the ```src/``` directory. To accomplish that, we need to write the following command: ```cd ..``` * Note that the space between cd and the two dots is required! 11- Now we need to prepare the compiler and tell it what settings do we need (Fig.09). For that, we write the following command: ```qmake USE_UPNP=1 USE_DBUS=1 USE_QRCODE=1``` It will show you a bunch of letters, symbols and numbers, just like before: It will swiftly give you back control of the command line. And of course, thatβs perfectly fine! <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen17.png</center><center>*Fig.09 Preparing the GUI: This command also ends silently, without errors, maybe some warnings, though.*</center><br> Now to compile the GUI! 12- Enter the following command in the terminal ```make``` And thatβs it! (Fig.10) It will be much faster than compiling devcoind, but once it has ended you can use the command ```ls``` to see a list of files and names as before, but now you will see a green file called devcoin-qt (Fig.11) Thatβs how the system shows an executable file. <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen20.png</center><center>*Fig.10 Successfully compiled! Look how it returned without error to the command line, once it has finished to compile.*</center><br> <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen19.png</center><center>*Fig.11 This green guy here is a binary file, and it will run in your system when you execute it.*</center><br> In order to execute it, you have to write the following command in your terminal: ```./devcoin-qt``` The dot and the slash before an executable file name tell to the system that you want to run that file. And now you can see the handsome wallet working! (Fig.12) π To download the blockchain completely, it will depend on your Internet speed. The blockchain size is around 2GB in size, so, it could take from 30 minutes to five hours (Fig.13). The good news is, you donβt have to wait for the whole blockchain at once, you can close the wallet and continue later and it will pickup where it left, so donβt worry about the time, but take note in case you donβt have much space left in your hard drive (Fig.14). <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen16.jpg</center><center>*Fig.12 Execute the ./devcoin-qt command and look how it runs!*</center><br> <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen17.jpg</center><center>*Fig.13 Keep in mind that synching the wallet will take time, so patience is your friend.*</center><br> <br><center>https://i57.servimg.com/u/f57/13/44/18/95/screen21.png</center><center>*Fig.14 The synchronized wallet is ready. Enjoy!*</center><br> <center></center> Well, I hope you have found this tutorial helpful and I will try to write more in the future. Just tell me what you want and if you like it, what things can be improved or anything you want! Keep steeming! ππππ --- | Table guide: Steps for compiling| |------------------------| |1. Open a terminal | |2. Installing dependencies: ```sudo apt-get install git libdb++-dev libdb-dev libboost-all-dev build-essential libtool pkg-config libssl-dev```| |3. Download the code: ```git clone https://github.com/devcoin/core.git```| |4. Enter the source code directory with ```cd core/src```| |5. Clean before begin: ```make -f makefile.unix clean```| |6. Begin compile devcoind: ```make -f makefile.unix USE_UPNP=-```| |7. Remove unused symbols: ```strip devcoind```| |8. Install GUI dependencies ```sudo apt-get install libqt4-dev qt4-qmake libqt5gui5 libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev libminiupnpc-dev libpng-dev libqrencode-dev```| |9. Get out of the source code directory using ```cd ..```| |10. Prepare the compiler for the GUI ```qmake USE_UPNP=1 USE_DBUS=1 USE_QRCODE=1```| |11. Execute ```make```| |12. Enjoy!| _This article is licensed by @cpol under [CC-BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) license. September 24th 2018_ β ### References: Ctya. (2018, September 5). Failed compilation from source #2 Β· Issue #56 Β· devcoin/core [Github comments]. Retrieved September 22, 2018, from (https://github.com/devcoin/core/issues/56#issuecomment-418958715) GDJ. (2018, February 19). Free Image on Pixabay - Abstract, Decorative, Divider [Stock images]. Retrieved September 22, 2018, from (https://pixabay.com/en/abstract-decorative-divider-fancy-3166168/) </div>
author | cpol |
---|---|
permlink | how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04 |
category | busy |
json_metadata | {"tags":["busy","devcoin","altcoin","cryptocurrency","tutorial"],"users":["cpol"],"image":["https://i57.servimg.com/u/f57/13/44/18/95/compil14.jpg","https://steemitimages.com/407x271/https://cdn.pixabay.com/photo/2018/02/19/20/28/abstract-3166168_960_720.png","https://i57.servimg.com/u/f57/13/44/18/95/screen15.jpg","https://i57.servimg.com/u/f57/13/44/18/95/screen14.jpg","https://i57.servimg.com/u/f57/13/44/18/95/screen12.png","https://i57.servimg.com/u/f57/13/44/18/95/screen13.png","https://i57.servimg.com/u/f57/13/44/18/95/screen15.png","https://i57.servimg.com/u/f57/13/44/18/95/screen14.png","https://i57.servimg.com/u/f57/13/44/18/95/screen16.png","https://i57.servimg.com/u/f57/13/44/18/95/screen18.png","https://i57.servimg.com/u/f57/13/44/18/95/screen17.png","https://i57.servimg.com/u/f57/13/44/18/95/screen20.png","https://i57.servimg.com/u/f57/13/44/18/95/screen19.png","https://i57.servimg.com/u/f57/13/44/18/95/screen16.jpg","https://i57.servimg.com/u/f57/13/44/18/95/screen17.jpg","https://i57.servimg.com/u/f57/13/44/18/95/screen21.png"],"links":["https://steemit.com/busy/@cpol/como-compilar-tu-propia-billetera-devcoin-en-ubuntu-18-04","https://creativecommons.org/licenses/by-sa/3.0/","https://github.com/devcoin/core/issues/56#issuecomment-418958715","https://pixabay.com/en/abstract-decorative-divider-fancy-3166168/"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-09-24 20:16:51 |
last_update | 2018-10-01 16:37:51 |
depth | 0 |
children | 25 |
last_payout | 2018-10-01 20:16:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.150 HBD |
curator_payout_value | 0.045 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12,450 |
author_reputation | 60,967,878,593,049 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,160,294 |
net_rshares | 144,545,940,618 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hr1 | 0 | 53,760,948,343 | 0.02% | ||
bitcoinnational | 0 | 0 | 100% | ||
cmp2020 | 0 | 11,469,672,506 | 22% | ||
traxo | 0 | 0 | 100% | ||
novacadian | 0 | 4,581,477,703 | 100% | ||
develcuy | 0 | 20,708,354,364 | 100% | ||
cub1 | 0 | 41,176,116,433 | 22% | ||
cpol | 0 | 1,755,971,368 | 100% | ||
eusebio | 0 | 41,062,089 | 100% | ||
moaphotography | 0 | 0 | 100% | ||
devcoin | 0 | 9,675,860,952 | 100% | ||
thetroublenotes | 0 | 228,255,139 | 2% | ||
ate-bit-dave | 0 | 0 | 100% | ||
fqm | 0 | 599,207,841 | 100% | ||
ax3 | 0 | 66,994,450 | 1% | ||
flipe | 0 | 459,250,792 | 95% | ||
fuzzybearbtc | 0 | 0 | 100% | ||
fastresteem | 0 | 22,768,638 | 1% | ||
satoshi0x | 0 | 0 | 100% | ||
fabiolaxcecere | 0 | 0 | 100% |
author | devcoin |
---|---|
permlink | re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20180924t220719949z |
category | busy |
json_metadata | {"tags":["busy"],"app":"steemit/0.1"} |
created | 2018-09-24 22:07:21 |
last_update | 2018-09-24 22:07:21 |
depth | 1 |
children | 1 |
last_payout | 2018-10-01 22:07:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 346,183,644,846 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 72,167,706 |
net_rshares | 11,198,400,320 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cpol | 0 | 1,719,003,550 | 100% | ||
devcoin | 0 | 9,479,396,770 | 100% |
Thank you very much! Glad you liked it!
author | cpol |
---|---|
permlink | re-devcoin-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20180924t224830744z |
category | busy |
json_metadata | {"tags":["busy"],"app":"steemit/0.1"} |
created | 2018-09-24 22:48:33 |
last_update | 2018-09-24 22:48:33 |
depth | 2 |
children | 0 |
last_payout | 2018-10-01 22:48:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 60,967,878,593,049 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,170,251 |
net_rshares | 0 |
author | devcoin |
---|---|
permlink | re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181003t221949150z |
category | busy |
json_metadata | {"tags":["busy"],"app":"steemit/0.1"} |
created | 2018-10-03 22:19:51 |
last_update | 2018-10-03 22:19:51 |
depth | 1 |
children | 1 |
last_payout | 2018-10-10 22:19:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 346,183,644,846 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 72,573,862 |
net_rshares | 9,255,730,167 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cpol | 0 | 1,655,427,999 | 100% | ||
devcoin | 0 | 7,600,302,168 | 100% |
Yay! Wonderful @devcoin!
author | cpol |
---|---|
permlink | re-devcoin-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181004t034224345z |
category | busy |
json_metadata | {"tags":["busy"],"users":["devcoin"],"app":"steemit/0.1"} |
created | 2018-10-04 03:42:30 |
last_update | 2018-10-04 03:42:30 |
depth | 2 |
children | 0 |
last_payout | 2018-10-11 03:42:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 60,967,878,593,049 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,586,509 |
net_rshares | 0 |
For those trying to build Devcoin 0.8.9.0, add the following to step 2: $ sudo apt install zlib1g-dev Also, the correct command line at step 10 is: $ qmake USE_UPNP=1 USE_DBUS=1 USE_QRCODE=1 devcoin-qt.pro
author | develcuy |
---|---|
permlink | r3uvbv |
category | busy |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2021-12-09 16:04:48 |
last_update | 2021-12-09 16:31:09 |
depth | 1 |
children | 0 |
last_payout | 2021-12-16 16:04:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | 4,853,554,441,622 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 108,411,612 |
net_rshares | 813,383,907 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
develcuy | 0 | 813,383,907 | 100% |
Really nice guide here great article and lovely to see this translated in Spanish as well, keep up the great work :)
author | fuzzybearbtc |
---|---|
permlink | re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181003t134412830z |
category | busy |
json_metadata | {"tags":["busy"],"app":"steemit/0.1"} |
created | 2018-10-03 13:44:18 |
last_update | 2018-10-03 13:44:18 |
depth | 1 |
children | 1 |
last_payout | 2018-10-10 13:44:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | 4,899,898,871 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,547,156 |
net_rshares | 1,704,876,430 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cpol | 0 | 1,704,876,430 | 100% | ||
satoshi0x | 0 | 0 | 100% |
Thank you@fuzzzybearbtc! Glad you like it!!!
author | cpol |
---|---|
permlink | re-fuzzybearbtc-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181003t155331581z |
category | busy |
json_metadata | {"tags":["busy"],"app":"steemit/0.1"} |
created | 2018-10-03 15:53:33 |
last_update | 2018-10-03 15:53:33 |
depth | 2 |
children | 0 |
last_payout | 2018-10-10 15:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 60,967,878,593,049 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,555,610 |
net_rshares | 0 |
Would you have any ideas, @cpol, why my old wallet (previously installed using this guide) would now be complaining about the present version of libboost? Perhaps it has to be re-compiled with a more updated version which may have happened since last use, which was some time ago? Below is some feedback from the system that may give you an idea... <PRE> ./devcoin-qt: error while loading shared libraries: libboost_system.so.1.58.0: cannot open shared object file: No such file or directory </PRE> <PRE> nova@nova-desktop:~/CryptoWallets/DVC-backup$ sudo apt-get install libboost-dev libboost-system-dev libboost-filesystem-dev libboost-thread-dev Reading package lists... Done Building dependency tree Reading state information... Done libboost-dev is already the newest version (1.65.1.0ubuntu1). libboost-filesystem-dev is already the newest version (1.65.1.0ubuntu1). libboost-system-dev is already the newest version (1.65.1.0ubuntu1). libboost-thread-dev is already the newest version (1.65.1.0ubuntu1). 0 upgraded, 0 newly installed, 0 to remove and 112 not upgraded. </PRE>
author | novacadian |
---|---|
permlink | q0tgvy |
category | busy |
json_metadata | {"users":["cpol"],"app":"steemit/0.1"} |
created | 2019-11-11 18:04:45 |
last_update | 2019-11-11 18:04:45 |
depth | 1 |
children | 12 |
last_payout | 2019-11-18 18:04:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,090 |
author_reputation | 26,836,051,225,391 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 92,408,333 |
net_rshares | 22,482,724,513 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cpol | 0 | 22,482,724,513 | 100% | ||
satoshi0x | 0 | 0 | 100% |
Unfortunately, I don't have any idea. My library versions are exactly the same as yours and I could compile the source code from main without problem. Are you using the main branch or another branch? Could you try with fresh install in a virtual machine like virtual box if you can reproduce the problem?
author | cpol |
---|---|
permlink | q0ti5p |
category | busy |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-11-11 18:32:12 |
last_update | 2019-11-11 18:32:12 |
depth | 2 |
children | 11 |
last_payout | 2019-11-18 18:32:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 308 |
author_reputation | 60,967,878,593,049 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 92,409,032 |
net_rshares | 192,247,893,323 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
novacadian | 0 | 192,247,893,323 | 100% |
Started a fresh install and after Step 7 received the following errors: <PRE> curl/lib/.libs/libcurl.a(libcurl_la-url.o): In function `fix_hostname.isra.6': url.c:(.text+0x3e8): undefined reference to `idn2_check_version' url.c:(.text+0x405): undefined reference to `idn2_lookup_ul' url.c:(.text+0x450): undefined reference to `idn2_strerror' curl/lib/.libs/libcurl.a(libcurl_la-url.o): In function `Curl_disconnect': url.c:(.text+0xd9c): undefined reference to `idn2_free' url.c:(.text+0xdb8): undefined reference to `idn2_free' url.c:(.text+0xdd4): undefined reference to `idn2_free' url.c:(.text+0xdf0): undefined reference to `idn2_free' curl/lib/.libs/libcurl.a(libcurl_la-url.o): In function `Curl_connect': url.c:(.text+0x3da7): undefined reference to `idn2_free' curl/lib/.libs/libcurl.a(libcurl_la-url.o):url.c:(.text+0x3dc3): more undefined references to `idn2_free' follow curl/lib/.libs/libcurl.a(libcurl_la-version.o): In function `curl_version.part.0': version.c:(.text+0x6f): undefined reference to `idn2_check_version' version.c:(.text+0x7b): undefined reference to `idn2_check_version' curl/lib/.libs/libcurl.a(libcurl_la-version.o): In function `curl_version_info.part.1': version.c:(.text+0xfa): undefined reference to `idn2_check_version' collect2: error: ld returned 1 exit status makefile.unix:189: recipe for target 'devcoind' failed make: *** [devcoind] Error 1 </PRE> Although it did not seem likely to be successful the attempt at the GUI compile was attempted and the following error was returned... <PRE> collect2: error: ld returned 1 exit status Makefile:525: recipe for target 'devcoin-qt' failed make: *** [devcoin-qt] Error 1 </PRE> During compilations a lot more errors were noticed in the course of the compiling than were remembered from previous compiles. When is the last time that you have done a compile from scratch, @cpol? The code itself is beginning to come into question for me.
author | novacadian |
---|---|
permlink | q10rii |
category | busy |
json_metadata | {"users":["cpol"],"app":"steemit/0.1"} |
created | 2019-11-15 16:37:30 |
last_update | 2019-11-15 16:37:30 |
depth | 3 |
children | 10 |
last_payout | 2019-11-22 16:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,929 |
author_reputation | 26,836,051,225,391 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 92,528,777 |
net_rshares | 632,931,828 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
satoshi0x | 0 | 632,931,828 | 100% |
A wonderful guide, @cpol. Managed to get a new wallet running under Ubuntu 16.xx. Thank you! π
author | novacadian |
---|---|
permlink | re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20180926t162820997z |
category | busy |
json_metadata | {"tags":["busy"],"users":["cpol"],"app":"steemit/0.1"} |
created | 2018-09-26 16:28:09 |
last_update | 2018-09-26 16:28:09 |
depth | 1 |
children | 1 |
last_payout | 2018-10-03 16:28:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 26,836,051,225,391 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,242,465 |
net_rshares | 512,398,245 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cpol | 0 | 512,398,245 | 100% |
I'm so glad @novacadian!Thanks to you for using this guide and resteeming! πππ
author | cpol |
---|---|
permlink | re-novacadian-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20180926t165602745z |
category | busy |
json_metadata | {"tags":["busy"],"users":["novacadian"],"app":"steemit/0.1"} |
created | 2018-09-26 16:56:03 |
last_update | 2018-09-26 16:56:03 |
depth | 2 |
children | 0 |
last_payout | 2018-10-03 16:56:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.097 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 60,967,878,593,049 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,243,514 |
net_rshares | 81,426,551,541 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
novacadian | 0 | 10,767,773,561 | 100% | ||
develcuy | 0 | 70,658,777,980 | 100% |
Nice read. Is it possible to have something written up for a mac OS wallet? as the one on the devcoin.org page isnt the best and I am having issues with mine.
author | orimar |
---|---|
permlink | re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181229t190310798z |
category | busy |
json_metadata | {"tags":["busy"],"app":"steemit/0.1"} |
created | 2018-12-29 19:03:12 |
last_update | 2018-12-29 19:03:12 |
depth | 1 |
children | 1 |
last_payout | 2019-01-05 19:03:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 158 |
author_reputation | 370,460,042 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,564,425 |
net_rshares | 23,709,442,740 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cpol | 0 | 23,709,442,740 | 100% |
Thank you for your kind words. I think is possible, but I'm not familiarized with compiling tools environment in mac OS nor I have a mac OS myself. Maybe @develcuy could share some light regarding this. I'm gonna research this around and see if it can be done. Thanks for asking and happy new year!
author | cpol |
---|---|
permlink | re-orimar-re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20181229t202837384z |
category | busy |
json_metadata | {"tags":["busy"],"users":["develcuy"],"app":"steemit/0.1"} |
created | 2018-12-29 20:28:39 |
last_update | 2018-12-29 20:28:39 |
depth | 2 |
children | 0 |
last_payout | 2019-01-05 20:28:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 300 |
author_reputation | 60,967,878,593,049 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,567,651 |
net_rshares | 0 |
Heads-up that error appears as of recently, so blockchain doesn't update properly - i.e. it's stuck at block 3999 (at first) if you just installed wallet by following this guide or some later block depending on your last receiver file. To fix it, you need to manually download receiver files (e.g. from https://github.com/devcoin/receivers - apparently all receiver files, or https://galaxies.mygamesonline.org/receiver_files.zip which has only 80 files tho) and then put them inside your receivers folder e.g. `~/.devcoin/receivers` folder (you can only download the ones you are missing). Then restart the wallet and it should start syncing properly. Some more discussion with regards to the issue: https://bitcointalk.org/index.php?topic=233997.msg50510377#msg50510377
author | traxo |
---|---|
permlink | re-cpol-how-to-compile-your-very-own-devcoin-wallet-in-ubuntu-18-04-20190414t221326740z |
category | busy |
json_metadata | {"tags":["busy"],"links":["https://github.com/devcoin/receivers","https://bitcointalk.org/index.php?topic=233997.msg50510377#msg50510377"],"app":"steemit/0.1"} |
created | 2019-04-14 22:13:27 |
last_update | 2019-04-14 22:19:12 |
depth | 1 |
children | 0 |
last_payout | 2019-04-21 22:13:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 779 |
author_reputation | 6,745,697,169 |
root_title | "How to compile your very own Devcoin Wallet in Ubuntu 18.04 πͺ π» πΎ" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,102,563 |
net_rshares | 0 |