我在Ubuntu16.04LTS上使用了以下命令:
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
,但没成功。
发布于 2018-01-11 10:56:11
nohup ./nheqminer_cpu -l equihash.hk.nicehash.com:3357 -u WalletID.work1 -t 14 &
https://askubuntu.com/questions/990987
复制相似问题