Bitcoin Forum
April 23, 2024, 09:10:52 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: Help with setting up a devcoin wallet - ya I'm a noob  (Read 35973 times)
lovebit (OP)
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
March 18, 2013, 05:58:17 PM
 #1

I've gone through forums a websites but  theres just not much on this and I'm not getting anywhere.  I would like to set up a DevCoin wallet and I have Ubuntu 12.10.  Can someone help me through this?  Any help would be greatly appreciated!
1713906652
Hero Member
*
Offline Offline

Posts: 1713906652

View Profile Personal Message (Offline)

Ignore
1713906652
Reply with quote  #2

1713906652
Report to moderator
1713906652
Hero Member
*
Offline Offline

Posts: 1713906652

View Profile Personal Message (Offline)

Ignore
1713906652
Reply with quote  #2

1713906652
Report to moderator
It is a common myth that Bitcoin is ruled by a majority of miners. This is not true. Bitcoin miners "vote" on the ordering of transactions, but that's all they do. They can't vote to change the network rules.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713906652
Hero Member
*
Offline Offline

Posts: 1713906652

View Profile Personal Message (Offline)

Ignore
1713906652
Reply with quote  #2

1713906652
Report to moderator
FuzzyBear
Legendary
*
Offline Offline

Activity: 1420
Merit: 1010



View Profile WWW
March 18, 2013, 05:59:24 PM
 #2

I'm doing the same on 12.04... so i'll post what i do here tonight and let u know

***** Earn DEV at http://devtome.com *****
markm
Legendary
*
Offline Offline

Activity: 2940
Merit: 1090



View Profile WWW
March 18, 2013, 06:05:06 PM
Last edit: March 19, 2013, 02:53:01 AM by markm
 #3

Thanks FuzzyBear.

Maybe some dev who uses Ubuntu will eventually set it up to be gettable with apt-get but so far DeVCoin seems to work on the principle that if you are a dev you can surely figure out how to compile it and if not you can buy some on Vircurex or mine at a pool that merges it, such as bitparking's merged mining pool.

-MarkM-

Browser-launched Crossfire client now online (select CrossCiv server for Galactic  Milieu)
Free website hosting with PHP, MySQL etc: http://hosting.knotwork.com/
ehoffman
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250


View Profile
March 18, 2013, 06:15:22 PM
 #4

I traded BTC, PPC, TRC, DevCoins, and LTC.  In only have a Bitcoin wallet (and software) on my PC.  The rest I just used online wallets like vircurex...  I end up trading for Bitcoins anyway.  I think it's the easiest way.

Like my comments?  Cheer me up at 137s1qFV63M6SXWhKkwjaZKEeZX23pq1hw
Don't like my comments, donate to the BCRT (better comment research team) here at 1A1PbZypjEe7yanj69ApVS1FhK8UMW7Wdc Smiley
Icoin
Hero Member
*****
Offline Offline

Activity: 585
Merit: 501



View Profile WWW
March 18, 2013, 08:19:56 PM
 #5

http://92.105.105.155/devcoin/ubuntu_12.04_64/
copy the receiver files to ./devcoin/receiver

FuzzyBear
Legendary
*
Offline Offline

Activity: 1420
Merit: 1010



View Profile WWW
March 18, 2013, 10:52:24 PM
Last edit: July 02, 2013, 12:05:00 PM by FuzzyBear
 #6

Ok so using doublec version of Devcoin from the github here https://github.com/doublec/devcoin

Assuming u have git installed on Ubuntu use the command in the terminal:
Code:
git clone https://github.com/doublec/devcoin.git

Once the download has finished change directory into the src folder:
Code:
cd ./devcoin/src

I got a few error message during installing as i did not have curl installed and a few other dependencies, so install the following using the commands:
Code:
sudo apt-get install libcurl4-openssl-dev
sudo apt-get install libglib2.0-dev libglibmm-2.4-dev

You may need to run the following line in the terminal for some other dependencies (I did not do this as I had already installed them when building the bitcoin client)
Code:
sudo apt-get install libboost-all-dev libdb-dev libdb++-dev libminiupnpc-dev libwxgtk2.8-dev

Now just compile in the terminal using the makefile command, I did the compile without UPNP activated
Code:
make -f makefile.unix USE_UPNP=1 devcoind

You have now created the devcoind.exe which you can start by typing
Code:
./devcoind

You will need to set a username and password in the config file located in your home directory .devcoin (this directory may be hidden) so open that directory and set a username and passwords.  I had to create a file which i called devcoin.conf and is identical to the bitcoin conf i have for this test purpose, though i changed port to 6333.

I also had to create a folder called "receiver" in the   .devcoin folder and downloaded the receiver_0.csv  to receiver_20.csv files to the .devcoin/receiver directory from here http://92.105.105.155/devcoin/  (thank you for the link Icoin)

Restart the devcoin server again and this time it should start downloading the blockchain,
and boom that's it Cool

open another terminal and cd into the src directory again..
Code:
cd ./devcoin/src
or right click in the terminal and open new tab (opens in same directory Smiley)

now run various commands against the devcoind such as:
Code:
./devcoind getinfo
./devcoind help

if all is well u will get a readout from getinfo command something like:
Code:
{
    "version" : 32501,
    "balance" : 0.00000000,
    "blocks" : 8966,
    "connections" : 5,
    "proxy" : "",
    "generate" : false,
    "genproclimit" : -1,
    "difficulty" : 92.94920663,
    "hashespersec" : 0,
    "testnet" : false,
    "keypoololdest" : 1363646484,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""
}

so yup that's it hope this was helpful feel free to ask any questions and all tips / donations are very much appreciated Smiley

***** Earn DEV at http://devtome.com *****
Unthinkingbit
Hero Member
*****
Offline Offline

Activity: 935
Merit: 1015



View Profile
March 19, 2013, 02:09:14 AM
 #7

Ok so using doublec version of Devcoin from the github here https://github.com/doublec/devcoin
..
so yup that's it hope this was helpful feel free to ask any questions and all tips / donations are very much appreciated Smiley

Yo FuzzyBear,

Thanks for the post, you get 2/5 of a generation share for a large informative post:
http://devtome.com/doku.php?id=devcoin_bounty#post

in round 22, starting at block 88,000, please check that the devcoin address is correct:
https://github.com/Unthinkingbit/charity/blob/master/bounty_22.csv

FuzzyBear
Legendary
*
Offline Offline

Activity: 1420
Merit: 1010



View Profile WWW
March 19, 2013, 09:44:56 AM
 #8

Ok so using doublec version of Devcoin from the github here https://github.com/doublec/devcoin
..
so yup that's it hope this was helpful feel free to ask any questions and all tips / donations are very much appreciated Smiley

Yo FuzzyBear,

Thanks for the post, you get 2/5 of a generation share for a large informative post:
http://devtome.com/doku.php?id=devcoin_bounty#post

in round 22, starting at block 88,000, please check that the devcoin address is correct:
https://github.com/Unthinkingbit/charity/blob/master/bounty_22.csv

Oh sweet Smiley thank you Unthinkingbit,

Yes I have checked the devcoin address and it is correct and I look forward to receiving my first bounty / charity rewards!!

***** Earn DEV at http://devtome.com *****
Mjbmonetarymetals
Legendary
*
Offline Offline

Activity: 1096
Merit: 1067



View Profile
March 19, 2013, 02:06:36 PM
 #9

Can anyone detail how to get the devcoin wallet on windows vista, why isn't there just a click and install version ?

Bitrated user: Mick.
Icoin
Hero Member
*****
Offline Offline

Activity: 585
Merit: 501



View Profile WWW
March 20, 2013, 10:03:45 AM
 #10

Ok so using doublec version of Devcoin from the github here https://github.com/doublec/devcoin

Assuming u have git installed on Ubuntu use the command in the terminal:
Code:
sudo git clone https://github.com/doublec/devcoin.git

Once the download has finished change directory into the src folder:
Code:
cd ./devcoin/src

I got a few error message during installing as i did not have curl installed and a few other dependencies, so install the following using the commands:
Code:
sudo apt-get install libcurl4-openssl-dev
sudo apt-get install libglib2.0-dev libglibmm-2.4-dev

Now just compile in the terminal using the makefile command, I did the compile without UPNP activated
Code:
make -f makefile.unix USE_UPNP=1 devcoind

You have now created the devcoind.exe which you can start by typing
Code:
sudo ./devcoind

You will need to set a username and password in the config file located in your home directory .devcoin (this directory may be hidden) so open that directory and set a username and passwords.  I had to create a file which i called devcoin.conf and is identical to the bitcoin conf i have for this test purpose, though i changed port to 6333.

I also had to create a folder called "receiver" in the   .devcoin folder and downloaded the receiver_0.csv  to receiver_20.csv files to the .devcoin/receiver directory from here http://92.105.105.155/devcoin/  (thank you for the link Icoin)

Restart the devcoin server again and this time it should start downloading the blockchain,
and boom that's it Cool

open another terminal and cd into the src directory again..
Code:
cd ./devcoin/src
or right click in the terminal and open new tab (opens in same directory Smiley)

now run various commands against the devcoind such as:
Code:
./devcoind getinfo
./devcoind help

if all is well u will get a readout from getinfo command something like:
Code:
{
    "version" : 32501,
    "balance" : 0.00000000,
    "blocks" : 8966,
    "connections" : 5,
    "proxy" : "",
    "generate" : false,
    "genproclimit" : -1,
    "difficulty" : 92.94920663,
    "hashespersec" : 0,
    "testnet" : false,
    "keypoololdest" : 1363646484,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""
}

so yup that's it hope this was helpful feel free to ask any questions and all tips / donations are very much appreciated Smiley

there are a lot dependencies missing in the discription, so if it want work do this and it will:
Code:
sudo apt-get install libboost-all-dev libdb-dev libdb++-dev libminiupnpc-dev libwxgtk2.8-dev

and run the command:

Code:
make -f makefile.unix USE_UPNP= devcoind

Copy the receiver Files from http://92.105.105.155/devcoin/ to ./devcoin/receiver



Mjbmonetarymetals
Legendary
*
Offline Offline

Activity: 1096
Merit: 1067



View Profile
March 20, 2013, 10:59:17 AM
 #11

Is there a reason why the devcoin wallet isn't just a simple download-install-sync ?

Bitrated user: Mick.
Icoin
Hero Member
*****
Offline Offline

Activity: 585
Merit: 501



View Profile WWW
March 20, 2013, 11:30:32 AM
Last edit: March 20, 2013, 11:54:37 AM by Icoin
 #12

Quote
Is there a reason why the devcoin wallet isn't just a simple download-install-sync ?
cause devs usualy know how to compile it.

If you need a windows binary, the one created by K1773R will probably work for you (its not working on x64):
http://devcoin.darkgamex.ch/Devcoin-WindowsBundle.zip,

FuzzyBear
Legendary
*
Offline Offline

Activity: 1420
Merit: 1010



View Profile WWW
March 20, 2013, 06:49:59 PM
 #13

Ok so using doublec version of Devcoin from the github here https://github.com/doublec/devcoin
..
so yup that's it hope this was helpful feel free to ask any questions and all tips / donations are very much appreciated Smiley

Yo FuzzyBear,

Thanks for the post, you get 2/5 of a generation share for a large informative post:
http://devtome.com/doku.php?id=devcoin_bounty#post

in round 22, starting at block 88,000, please check that the devcoin address is correct:
https://github.com/Unthinkingbit/charity/blob/master/bounty_22.csv

Oh sweet Smiley thank you Unthinkingbit,

Yes I have checked the devcoin address and it is correct and I look forward to receiving my first bounty / charity rewards!!

Hi Unthinkingbit, just posting here as well as my devcoin addy was for a cryptostocks deposit addy, but i understand this will not work, so here is the addy off my devcoin install:

18xskifRMWUtMzbHSzQi7rEWF5upmktgF2

many thanks

also icoin ty for pointing out some dependencies that may be missing.. i built BTC and TRC clients so most likely had the dependencies already intalled, but i have updated my post to add the dependencies

***** Earn DEV at http://devtome.com *****
lovebit (OP)
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
March 31, 2013, 12:41:26 PM
 #14

Fuzzybear - thanks for your detailed post (and sorry for the delay in responding - life threw me a curve ball) it was just what I was looking for!  Unfortunately it didn't work - I have downloaded various versions in the past when I tried to install so I have  devcoin folder in my home folder that is locked, and not a .devcoin folder.  I have given up - but will be getting a new machine soon and will try again on a new install.  I sent you .15btc about a week ago but never told you - just wanted to give you a heads up.  Thanks again.
FuzzyBear
Legendary
*
Offline Offline

Activity: 1420
Merit: 1010



View Profile WWW
March 31, 2013, 03:21:33 PM
 #15

Hello lovebit,

No worries for the late reply, I assumed it had either worked for you and you were busy enjoying playing round with your devcoin wallet on the Ubuntu platform, or yes as you had said, life throws a curve ball at ya when u least expect it!! Trust me soo many of my projects and other aspects of my life seem to suffer from this curve ball, if only i could catch the person throwing me all of them and just ask them to STOP!!!

But back to your post, I can see that you are very nearly there!! and didn't want you to get stuck at the last hurdle.  Two things I should explain about Ubuntu here for you as I have only recently come to use this platfom myself in the last few months (so I am by no means the expert on the matter, but here is what I have picked up that may help you in your current situation.

The folder you are looking for is called ".devcoin" and I am not refering to the "devcoin" folder which you have as well.  The devcoin folder should contain all the source code and the build you have done for devcoind, the .devcoin folder should contain your config file, wallet.dat and the logs and blockchain etc.  The two points i'm trying to make are basically on hidden folders and folder permissions. You will find that by default the .devcoin folder will be hidden, and folder permissions is something I am still getting my head round as there are terminal commands you can do, but people talk about doing these with great care as you do not want to unlock your whole folder structure to read write for everyone, so they recommend trying in various steps.

If you do need to change folder permissions have a read of this first https://help.ubuntu.com/community/FilePermissions

but try this first to see if you can gain access to the .devcoin folder.

On your Ubuntu system open up a file browser and navigate to you "home" directory.

Then just press Ctrl + H

You should see a number of hidden folders now visible and you should be able to navigate into them Smiley

If these folders have permissions on them then have a look at the link i send above and let me know if you still having problems and I'll see if I can give you the command for your terminal, or someone else may pop up and tell you what to type in the terminal.

Many thanks for the 0.15BTC Cheesy really appreciated and I hope you can have your devcoin wallet set up soon,

Once you have your wallet, don't forget that you can earn devcoins by writing articles in http://www.devtome.com ... lets just say this is the latest positive curve ball life has thrown at me Smiley

***** Earn DEV at http://devtome.com *****
Wekkel
Legendary
*
Offline Offline

Activity: 3108
Merit: 1531


yes


View Profile
April 01, 2013, 10:50:05 AM
 #16

Ok so using doublec version of Devcoin from the github here https://github.com/doublec/devcoin

Assuming u have git installed on Ubuntu use the command in the terminal:
Code:
sudo git clone https://github.com/doublec/devcoin.git


I'm working with Debian here. Stuck at this step as it gives me "error: the requested URL returned error: 403 warning: remote HEAD refers to nonexistent ref, unable to checkout". A second try tells me that the directory is not empty  Huh

markm
Legendary
*
Offline Offline

Activity: 2940
Merit: 1090



View Profile WWW
April 01, 2013, 01:25:45 PM
 #17

https://github.com/knotwork/old-devcoind

https://github.com/knotwork/old-devcoin-qt

-MarkM-

Browser-launched Crossfire client now online (select CrossCiv server for Galactic  Milieu)
Free website hosting with PHP, MySQL etc: http://hosting.knotwork.com/
Wekkel
Legendary
*
Offline Offline

Activity: 3108
Merit: 1531


yes


View Profile
April 01, 2013, 06:29:45 PM
 #18

Same problem. Terminal is telling me that the 'remote HEAD refers to nonexistent ref, unable to checkout'

gigabytecoin
Sr. Member
****
Offline Offline

Activity: 280
Merit: 252


View Profile
April 09, 2013, 10:08:33 PM
 #19

When I follow the instructions and type the following command on Ubuntu 12.10 x64:
Quote
sudo make -f makefile.unix USE_UPNP= devcoind

This is all I see:
Quote
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2 -o obj/nogui/auxpow.o auxpow.cpp
make: g++: Command not found
make: *** [obj/nogui/auxpow.o] Error 127

I assume that means that it didn't compile?

Also, will we ever have control of github.com/devcoin/devcoin.git or will it always be github.com/doublec/devcoin.git Huh
caramelsun
Newbie
*
Offline Offline

Activity: 4
Merit: 0



View Profile WWW
May 12, 2013, 08:11:38 PM
 #20

I have been having similar difficulty with the install of the devcoin wallet on my system - I will try the older edition, since my system is a Mint Linux 12. I do have a question as far as what system configuration (os / hardware combined) suited this install (from people who have installed it) - sometimes you just can't 'get there from here' on certain configs (if you know what I mean). It might be good to keep a bit of a database of compatible configurations for admin use for devcoin overall.
Pages: [1] 2 »  All
  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!