====== Compilation de twister sur Debian 7 ====== ===== Installation des outils ===== sudo apt-get update sudo apt-get install build-essential libboost-all-dev \ libdb++-dev libminiupnpc-dev libtool libssl-dev autoconf git ===== Obtenir et installer twister ===== ==== Démon twister ==== 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 ==== html twister ==== mkdir ~/.twister cd ~/.twister git clone https://github.com/miguelfreitas/twister-html.git html ==== Configuration ==== echo -e "rpcuser=user\nrpcpassword=pwd" > ~/.twister/twister.conf chmod 600 ~/.twister/twister.conf ===== Démarre le démon twister ===== ./twisterd -daemon -rpcallowip=127.0.0.1 ===== Utiliser twister ===== Avec votre navigateur, ouvrer http://127.0.0.1:28332/index.html ===== Mise à jour ===== cd ~/twister/twister-core git pull ./autotool.sh ./configure make cd ~/.twister/html git pull