I installed bitcoin on my Linux Server. And connect with PUTTY.

Now to run some command lines of bitcoin (getbalance, getnewaddress,...), - At first I have to open a putty window (First window) -> and run bitcoin server by type command line below:

./bitcoind

And then to run getbalance I have to open other session (other putty window) and type:

./bitcoind getbalance

I can not run 2 above command lines at the same putty window. And if I close first window -> the statement "./bitcoind getbalance" at second window -> can not run.

How I can run "./bitcoind getbalance" (or other command lines) at any time without typing "./bitcoind" (at first window) ?

link|improve this question

12% accept rate
I'm guessing this has been downvoted because the question should go in the Bitcoin SE site: bitcoin.stackexchange.com – Highly Irregular Dec 18 '11 at 21:29
please accept answers to your questions – Lohoris Jan 28 at 13:55
feedback

closed as off topic by jv42, Paul R, Jeff Atwood Jan 29 at 7:01

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

You could start bitcoind as a daemon on startup (how to do this depends on your platform), or you could run it like so: ./bitcoind &. The trailing & tells the shell to run the preceding command in the background, letting you continue using the terminal. Some people don't like using &, however, since the program may keep printing messages and the like to the terminal. I've also heard that closing the terminal may cause the backgrounded program to misbehave, though I've heard no explanation to why it should be so.

Another method is using screens, which I'm vaguely familiar with but haven't used myself. This looks like a decent tutorial: http://www.rackaid.com/resources/linux-screen-tutorial-and-how-to/

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.