aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorredfish <redfish@galactica.pw>2016-05-28 16:41:00 -0400
committerredfish <redfish@galactica.pw>2016-05-28 16:41:00 -0400
commit14d10e77b0b0078d6f386e9f642c54cbffd3cdaf (patch)
tree74e79039b681de67961404443f84849107cdddfb /README.md
parentMerge pull request #842 (diff)
downloadmonero-14d10e77b0b0078d6f386e9f642c54cbffd3cdaf.tar.xz
readme: notes on config file and fg/bg run mode
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3311c4ec9..81d5d75da 100644
--- a/README.md
+++ b/README.md
@@ -187,6 +187,24 @@ Dependencies: Doxygen 1.8.0 or later, Graphviz 2.28 or later (optional).
* If you have installed Graphviz, you can also generate in-doc diagrams by instead running `HAVE_DOT=YES doxygen Doxyfile`
* The output will be built in doc/html/
+## Running bitmonerod
+
+The build places the binary in `bin/` sub-directory within the build directory
+from which cmake was invoked (repository root by default). To run in
+foreground:
+
+ ./bin/bitmonerod
+
+To run in background:
+
+ ./bin/bitmonerod --log-file bitmonerod.log --detach
+
+To list all available options, run `./bin/bitmonerod --help`. Options can be
+specified either on the command line or in a configuration file passed by the
+`--config-file` argument. To specify an option in the configuration file, add
+a line with the syntax `argumentname=value`, where `argumentname` is the name
+of the argument without any dashes, for example `log-level=1`.
+
## Internationalization
See README.i18n