如何在后台运行 nheqminer

如何在后台运行 nheqminer

我在 Ubuntu 16.04 LTS 上使用以下命令:

sudo apt-get install cmake build-essential libboost-all-dev
git clone -b Linux https://github.com/nicehash/nheqminer
cd nheqminer/cpu_xenoncat/Linux/asm/
sh assemble.sh
cd ../../../Linux_cmake/nheqminer_cpu
cmake .
make -j $(nproc)
./nheqminer_cpu -b
./nheqminer_cpu -l equihash.hk.nicehash.com:3357 -u WalletID.work1 -t 14

所以如果我关闭会话,挖矿就会停止。我如何在后台运行它?我试过了screen,但没有用。

答案1

nohup ./nheqminer_cpu -l equihash.hk.nicehash.com:3357 -u WalletID.work1 -t 14 &

相关内容