From df21f1d0154214986c8f279662ef02180655fa88 Mon Sep 17 00:00:00 2001 From: Giacomo Lacava Date: Sat, 4 Jan 2014 13:57:43 +0000 Subject: [PATCH] minor doc corrections --- doc/build-osx.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/build-osx.md b/doc/build-osx.md index dd14715d..0a6d400e 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -78,7 +78,8 @@ Instead, it's enough to make sure the right openssl binary is on your $PATH: ./bootstrap.sh ./configure --enable-logging --enable-debug --enable-dht make - make install + # note: install is optional, might conflict with existing libtorrent install + make install 4. Build twisterd. Note: it *will* emit a lot of warnings, but as long as you don't get actual `error` messages, it should be fine: @@ -132,7 +133,7 @@ directory. We have to first create the RPC configuration file, though. Run `./twisterd` to get the filename where it should be put, or just try these commands: - echo -e "rpcuser=twisterrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/.twister/twister.conf" + echo -e "rpcuser=user\nrcpassword=pwd" > "/Users/${USER}/.twister/twister.conf" chmod 600 "/Users/${USER}/.twister/twister.conf" When next you run it, it will start downloading the blockchain, but it won't @@ -142,10 +143,10 @@ output anything while it's doing this. This process may take several hours. If y Other commands: ./twisterd --help # for a list of command-line options. - ./twisterd -daemon # to start the daemon. + ./twisterd -daemon # to start it as a daemon. ./twisterd help # When the daemon is running, to get a list of RPC commands In order to get the HTML interface, you'll have to download it and link it in .twister: git clone git@github.com:miguelfreitas/twister-html.git - ln -s twister-html /Users/${USER}/.twister/html \ No newline at end of file + ln -s twister-html /Users/${USER}/.twister/html