From d52c2429b7d59018408174cf0d66ffd1e10febdf Mon Sep 17 00:00:00 2001 From: Laurent Raufaste Date: Sat, 25 Jan 2014 18:06:14 -0500 Subject: [PATCH 1/2] Updated and fixed the debian/ubuntu build doc --- ...ing-on-ubuntu-debian.md => building-on-ubuntu-debian.md} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) rename doc/{bulding-on-ubuntu-debian.md => building-on-ubuntu-debian.md} (87%) diff --git a/doc/bulding-on-ubuntu-debian.md b/doc/building-on-ubuntu-debian.md similarity index 87% rename from doc/bulding-on-ubuntu-debian.md rename to doc/building-on-ubuntu-debian.md index 74cb117c..ba58b0cf 100644 --- a/doc/bulding-on-ubuntu-debian.md +++ b/doc/building-on-ubuntu-debian.md @@ -1,13 +1,15 @@ # Ubuntu / Debian building instructions +Tested on a pristine: + - Ubuntu 13.10 amd64 + ## Install 1. sudo apt-get update 1. sudo apt-get install build-essential libssl-dev libboost-all-dev libdb++-dev libminiupnpc-dev git openssl autoconf libtool 1. git clone https://github.com/miguelfreitas/twister-core.git 1. cd twister-core/libtorrent -1. ./bootstrap.sh -1. ./configure --enable-logging --enable-debug --enable-dht +1. ./bootstrap.sh --with-boost-libdir=/usr/lib/x86_64-linux-gnu 1. cd ../src 1. make -f makefile.unix From 8108820accbeca1973e0a18d5b7b90825a063db2 Mon Sep 17 00:00:00 2001 From: Laurent Raufaste Date: Sun, 26 Jan 2014 00:02:37 -0500 Subject: [PATCH 2/2] Updated the ubuntu building doc to use autotool.sh --- doc/building-on-ubuntu-debian.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/building-on-ubuntu-debian.md b/doc/building-on-ubuntu-debian.md index ba58b0cf..56a74180 100644 --- a/doc/building-on-ubuntu-debian.md +++ b/doc/building-on-ubuntu-debian.md @@ -6,12 +6,12 @@ Tested on a pristine: ## Install 1. sudo apt-get update -1. sudo apt-get install build-essential libssl-dev libboost-all-dev libdb++-dev libminiupnpc-dev git openssl autoconf libtool +1. sudo apt-get install git autoconf libtool build-essential libboost-all-dev libssl-dev libdb++-dev libminiupnpc-dev 1. git clone https://github.com/miguelfreitas/twister-core.git -1. cd twister-core/libtorrent -1. ./bootstrap.sh --with-boost-libdir=/usr/lib/x86_64-linux-gnu -1. cd ../src -1. make -f makefile.unix +1. cd twister-core +1. ./autotool.sh +1. ./configure +1. make ## Configuration & web gui @@ -22,7 +22,7 @@ Tested on a pristine: ## Start -1. cd twister-core/src -1. ./twisterd -rpcuser=user -rpcpassword=pwd +1. cd twister-core +1. ./twisterd -rpcuser=user -rpcpassword=pwd -rpcallowip=127.0.0.1 1. Open http://127.0.0.1:28332/index.html and use the user/pwd credentials 1. Create your account !