Быстрый старт
Настройка майнераСтраницы
ЧаВо Уведомления Доска почёта Майнеры Выплаты Статистика Найденные блокиСервисы
Обозреватель блоков XDAGcd
to your home directory. Do not run the wallet as root
!sudo apt-get install gcc libssl-dev libgmp3-dev build-essential git
git clone https://github.com/XDagger/xdag.git
cd ./xdag/client
make
./xdag -d -m 1 fi1.xdag.org:8080
. Set up your wallet password, type random keys (at least 3 lines of random keys). Wait until host keys are generated../xdag -i
. Type terminate
and press enter.cd
to your home directory.cat << 'EOD' > ./xdag_wallet_console.sh #!/bin/bash pidof xdag > /dev/null if [ "$?" -ne 0 ]; then echo "Wallet not running! Start it with ./xdag_wallet_run.sh" exit 1 fi echo Starting wallet console... (cd ./xdag/client && ./xdag -i) echo -n "Wallet PIDs: " pidof xdag EOD
cat << 'EOD' > ./xdag_wallet_run.sh #!/bin/bash PIDS="`pidof xdag`" if [ "$?" -eq 0 ]; then echo "Wallet already running? PIDs: ${PIDS}" echo "run ./xdag_wallet_console.sh and type 'terminate' to terminate the wallet." exit 1 fi echo Starting wallet... (cd ./xdag/client && ./xdag -d -m 1 fi1.xdag.org:8080) echo -n "Wallet PIDs: " pidof xdag EODReplace 4 with number of mining threads, for dedicated mining machines, set this to number of CPU threads. You can control this later by typing
mining N
in the XDAG console, where N is the number of mining threads you want to run.
cat << 'EOD' > ./xdag_wallet_update.sh #!/bin/bash PIDS="`pidof xdag`" if [ "$?" -eq 0 ]; then echo "Wallet is running! Stop it before updating. PIDs: ${PIDS}" echo "run ./xdag_wallet_console.sh and type 'terminate' to terminate the wallet." exit 1 fi echo Updating git repository... (cd ./xdag && git pull && cd ./client && make) echo "Done! Start the wallet with ./xdag_wallet_run.sh" EOD
chmod +x xdag_*
./xdag_wallet_run.sh
in your home folder, type in your wallet password../xdag_wallet_console.sh
../xdag_wallet_console.sh
, type terminate
, press enter, run ./xdag_update.sh
, then ./xdag_wallet_run.sh
and type your wallet password again.balance
in the miner console. To show your wallet address, type account
in the miner console. You can also use our website to check your balance at any time on the home page, or register your miner to automatically show it's balance, payouts, unpaid shares and more.