====== Kompilieren Twister mit Debian 7 ====== ===== Installation benötigter Pakete ===== sudo apt-get update sudo apt-get install build-essential libboost-all-dev \ libdb++-dev libminiupnpc-dev libtool libssl-dev autoconf git ===== Twister Herunterladen und Installieren ===== ==== Twister daemon ==== mkdir ~/twister cd ~/twister git clone https://github.com/miguelfreitas/twister-core.git git clone https://github.com/miguelfreitas/twister-html.git cd twister-core ./autotool.sh ./configure make ==== Twister html ==== mkdir ~/.twister cd ~/.twister git clone https://github.com/miguelfreitas/twister-html.git html ==== Einstellungen ==== echo -e "rpcuser=user\nrpcpassword=pwd" > ~/.twister/twister.conf chmod 600 ~/.twister/twister.conf ===== Start Twister deamon ===== cd ~/twister/twister-core ./twisterd -daemon -rpcallowip=127.0.0.1 ===== Twister aufrufen ===== Öffne in deinem Browser: http://127.0.0.1:28332/index.html ===== Twister aktualisieren ===== ==== Twister daemon ==== cd ~/twister/twister-core git pull ./autotool.sh ./configure make ==== twister html ==== cd ~/.twister/html git pull