Bitcoin Forum
May 04, 2024, 10:46:07 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: built 3.23 in Narwhal - no gui  (Read 2199 times)
cdnbcguy (OP)
Full Member
***
Offline Offline

Activity: 128
Merit: 100


View Profile WWW
June 27, 2011, 09:08:23 PM
 #1

Hi - I've built 3.23 in Narwhal, it compiles and runs and downloads blocks but the gui does not come up.

tail -F debug.log
IRC got new address
IRC got join
IRC got join
IRC got join
IRC got join
IRC got join
AddAddress()
IRC got new address
IRC got join
IRC got join

it does eventually get the blocks - blkindex.dat is 137 mb and blk0001.dat is 286 mb - but the gui never shows up. Any ideas?

 Huh

Annona ad! Please keep in mind that there is nothing wrong with Bitcoin itself. All it's scandals are caused by wonky websites and sleazy people exploiting it. The light attracts bugs.

When all this bullshit drys up and blows away, Bitcoin will be stronger than ever.
1714819567
Hero Member
*
Offline Offline

Posts: 1714819567

View Profile Personal Message (Offline)

Ignore
1714819567
Reply with quote  #2

1714819567
Report to moderator
Every time a block is mined, a certain amount of BTC (called the subsidy) is created out of thin air and given to the miner. The subsidy halves every four years and will reach 0 in about 130 years.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714819567
Hero Member
*
Offline Offline

Posts: 1714819567

View Profile Personal Message (Offline)

Ignore
1714819567
Reply with quote  #2

1714819567
Report to moderator
1714819567
Hero Member
*
Offline Offline

Posts: 1714819567

View Profile Personal Message (Offline)

Ignore
1714819567
Reply with quote  #2

1714819567
Report to moderator
drawoc
Full Member
***
Offline Offline

Activity: 168
Merit: 100

Firstbits: 175wn


View Profile
June 27, 2011, 11:43:09 PM
 #2

Do you have the package libwxgtk2.8-dev installed? If not, install it, recompile, and see if that works.

Donate: 175WNXmJ1WVhFgVGKUqEhYtAQGRYAvqPA
cdnbcguy (OP)
Full Member
***
Offline Offline

Activity: 128
Merit: 100


View Profile WWW
June 28, 2011, 12:12:38 AM
 #3

Do you have the package libwxgtk2.8-dev installed? If not, install it, recompile, and see if that works.

I'll try it, but I must tell you it's not in the build-unix.txt file.


Annona ad! Please keep in mind that there is nothing wrong with Bitcoin itself. All it's scandals are caused by wonky websites and sleazy people exploiting it. The light attracts bugs.

When all this bullshit drys up and blows away, Bitcoin will be stronger than ever.
drawoc
Full Member
***
Offline Offline

Activity: 168
Merit: 100

Firstbits: 175wn


View Profile
June 28, 2011, 12:17:38 AM
 #4

Sorry, never mind. Just read build-unix.txt more closely, and:

Quote
Requires wxWidgets 2.9.0 or greater, which uses UTF-8. Don't try 2.8, it
won't work.

You need to download wxWidgets from http://www.wxwidgets.org/downloads/
and build it yourself. See the build instructions and configure parameters
below.

So, you need to compile wxwidgets yourself, if you haven't already.

Donate: 175WNXmJ1WVhFgVGKUqEhYtAQGRYAvqPA
cdnbcguy (OP)
Full Member
***
Offline Offline

Activity: 128
Merit: 100


View Profile WWW
June 28, 2011, 01:17:26 AM
 #5

Ok - I did on the 15th but I remember now - here's the script from build-unix.txt

cd /usr/local
tar -xzvf wxWidgets-2.9.0.tar.gz
cd wxWidgets-2.9.0
mkdir buildgtk
cd buildgtk
../configure --with-gtk --enable-debug --disable-shared --enable-monolithic
make
sudo su
make install
ldconfig

Notice it says sudo su at the end - well, I needed root access just to untar the files in usr/local

I am a bigger unix noob than I would like to admit - I did the whole thing as root - was this wrong?

Sorry, never mind. Just read build-unix.txt more closely, and:

Quote
Requires wxWidgets 2.9.0 or greater, which uses UTF-8. Don't try 2.8, it
won't work.

You need to download wxWidgets from http://www.wxwidgets.org/downloads/
and build it yourself. See the build instructions and configure parameters
below.

So, you need to compile wxwidgets yourself, if you haven't already.

Annona ad! Please keep in mind that there is nothing wrong with Bitcoin itself. All it's scandals are caused by wonky websites and sleazy people exploiting it. The light attracts bugs.

When all this bullshit drys up and blows away, Bitcoin will be stronger than ever.
drawoc
Full Member
***
Offline Offline

Activity: 168
Merit: 100

Firstbits: 175wn


View Profile
June 28, 2011, 03:48:25 AM
 #6

Doing them all as root isn't ideal, but should work. Did you just copy and paste most of that in one block, or did you enter the commands one by one?
Were there any build errors?
Try running make install and ldconfig again (as root), I'm going to guess they didn't do their job.

Donate: 175WNXmJ1WVhFgVGKUqEhYtAQGRYAvqPA
talpan
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile
June 28, 2011, 02:01:24 PM
 #7

Here is a really good guide on how to compile bitcoin under linux(ubuntu, works on debian too) Smiley.
http://lickthesalt.com/2010/08/19/compiling-bitcoin-on-ubuntu-10-04-lucid/

regards, talpan
cdnbcguy (OP)
Full Member
***
Offline Offline

Activity: 128
Merit: 100


View Profile WWW
June 28, 2011, 11:42:38 PM
 #8

No difference - also the webpage does not mention miniupnpc - but I appreciate the help.

Here is a really good guide on how to compile bitcoin under linux(ubuntu, works on debian too) Smiley.
http://lickthesalt.com/2010/08/19/compiling-bitcoin-on-ubuntu-10-04-lucid/

regards, talpan

Annona ad! Please keep in mind that there is nothing wrong with Bitcoin itself. All it's scandals are caused by wonky websites and sleazy people exploiting it. The light attracts bugs.

When all this bullshit drys up and blows away, Bitcoin will be stronger than ever.
talpan
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile
July 04, 2011, 10:55:51 PM
 #9

No difference - also the webpage does not mention miniupnpc - but I appreciate the help.

Here is a really good guide on how to compile bitcoin under linux(ubuntu, works on debian too) Smiley.
http://lickthesalt.com/2010/08/19/compiling-bitcoin-on-ubuntu-10-04-lucid/

regards, talpan

Hey,

here you can download miniupnc, had the problem on a different machine, it works fine with it.

http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.5.tar.gz

tar xfv miniupnc..
cd miniupnc
make
make install
regards, talpan
gigabytecoin
Sr. Member
****
Offline Offline

Activity: 280
Merit: 252


View Profile
July 05, 2011, 03:39:54 AM
 #10

Hi - I've built 3.23 in Narwhal, it compiles and runs and downloads blocks but the gui does not come up.

tail -F debug.log
IRC got new address
IRC got join
IRC got join
IRC got join
IRC got join
IRC got join
AddAddress()
IRC got new address
IRC got join
IRC got join

it does eventually get the blocks - blkindex.dat is 137 mb and blk0001.dat is 286 mb - but the gui never shows up. Any ideas?

 Huh

Why are you compiling it?

What is wrong with the download link available on bitcoin.org?
cdnbcguy (OP)
Full Member
***
Offline Offline

Activity: 128
Merit: 100


View Profile WWW
July 08, 2011, 12:58:32 AM
Last edit: July 08, 2011, 03:12:14 AM by cdnbcguy
 #11


Why are you compiling it?

What is wrong with the download link available on bitcoin.org?

Well, as part of my continuous improvement program I am trying to get back into C after abandoning it years ago... I have decided that a few things in computers will stick around like Unix, C and SQL so I should get a grip on them.


Annona ad! Please keep in mind that there is nothing wrong with Bitcoin itself. All it's scandals are caused by wonky websites and sleazy people exploiting it. The light attracts bugs.

When all this bullshit drys up and blows away, Bitcoin will be stronger than ever.
drawoc
Full Member
***
Offline Offline

Activity: 168
Merit: 100

Firstbits: 175wn


View Profile
July 08, 2011, 01:21:45 AM
 #12

You could attempt to compile the QT port of the bitcoin app:
http://forum.bitcoin.org/index.php?topic=15276.0
They're planning on switching to QT in the future anyway, and you might have fewer issues.

Donate: 175WNXmJ1WVhFgVGKUqEhYtAQGRYAvqPA
marcus_of_augustus
Legendary
*
Offline Offline

Activity: 3920
Merit: 2348


Eadem mutata resurgo


View Profile
July 12, 2011, 06:59:40 AM
 #13

Hi - I've built 3.23 in Narwhal, it compiles and runs and downloads blocks but the gui does not come up.

tail -F debug.log
IRC got new address
IRC got join
IRC got join
IRC got join
IRC got join
IRC got join
AddAddress()
IRC got new address
IRC got join
IRC got join

it does eventually get the blocks - blkindex.dat is 137 mb and blk0001.dat is 286 mb - but the gui never shows up. Any ideas?

 Huh


Why are you compiling it?

What is wrong with the download link available on bitcoin.org?

What's wrong with wanting to compile it ...?

Pages: [1]
  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!