全球主机交流论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

CeraNetworks网络延迟测速工具IP归属甄别会员请立即修改密码
楼主: shc

重磅福利2:如何利用闲置服务器高效率挖矿回本/赚钱(updated)

  [复制链接]
发表于 2017-11-11 03:15:10 | 显示全部楼层
shc 发表于 2017-11-11 03:12
矿池地址,钱包地址(加上Payment ID),这两个填了就行

钱包地址和Payment ID连一起写?  ,这个叫wallet_address?
 楼主| 发表于 2017-11-11 03:16:41 | 显示全部楼层
qwer121 发表于 2017-11-11 03:15
钱包地址和Payment ID连一起写?  ,这个叫wallet_address?

每个矿池都不一样。这些基本的概念都不太清楚的话,我建议你看一看国内的中文挖比特币/以太币的资料学习一下,然后再来挖这个
发表于 2017-11-11 03:20:33 | 显示全部楼层
shc 发表于 2017-11-11 03:16
每个矿池都不一样。这些基本的概念都不太清楚的话,我建议你看一看国内的中文挖比特币/以太币的资料学习 ...

我用的是 xmr.nanopool.org  
的确是英语不咋好。。而且也不太懂。
发表于 2017-11-11 03:27:54 | 显示全部楼层
hitbtc. 啥位置能看到动态啊。我这钱包地址上没加pay ID。。好像没什么变化。。
请教dalao 钱包地址和ID连在一起组成个长串数字放到wallet_address里??
 楼主| 发表于 2017-11-11 04:19:37 | 显示全部楼层
qwer121 发表于 2017-11-11 03:27
hitbtc. 啥位置能看到动态啊。我这钱包地址上没加pay ID。。好像没什么变化。。
请教dalao 钱包地址和ID连 ...

walletaddress.paymentID
发表于 2017-11-11 04:56:07 | 显示全部楼层
-11-11 04:39:47] : New block detected.
[2017-11-11 04:40:12] : New block detected.
[2017-11-11 04:40:32] : Difficulty changed. Now: 102400.
[2017-11-11 04:40:32] : New block detected.
[2017-11-11 04:41:02] : Result accepted by the pool.
[2017-11-11 04:41:32] : Difficulty changed. Now: 29520.
[2017-11-11 04:41:32] : New block detected.
[2017-11-11 04:42:32] : Difficulty changed. Now: 18720.
[2017-11-11 04:42:32] : New block detected.
[2017-11-11 04:43:32] : Difficulty changed. Now: 13710.
[2017-11-11 04:43:32] : New block detected.
[2017-11-11 04:43:49] : New block detected.
[2017-11-11 04:44:00] : New block detected.
[2017-11-11 04:44:32] : Difficulty changed. Now: 10800.
[2017-11-11 04:44:32] : New block detected.
[2017-11-11 04:44:46] : Result accepted by the pool.
[2017-11-11 04:44:54] : Result accepted by the pool.
[2017-11-11 04:45:05] : Result accepted by the pool.
[2017-11-11 04:45:32] : Difficulty changed. Now: 11730.
[2017-11-11 04:45:32] : New block detected.
[2017-11-11 04:46:03] : Result accepted by the pool.
[2017-11-11 04:46:25] : Result accepted by the pool.
[2017-11-11 04:47:07] : Result accepted by the pool.
[2017-11-11 04:47:31] : Result accepted by the pool.
[2017-11-11 04:48:01] : Result accepted by the pool.
[2017-11-11 04:48:01] : Result accepted by the pool.
[2017-11-11 04:48:25] : New block detected.
[2017-11-11 04:48:54] : New block detected.
[2017-11-11 04:48:54] : Result accepted by the pool.
[2017-11-11 04:49:17] : Result accepted by the pool.
[2017-11-11 04:49:28] : New block detected.
[2017-11-11 04:49:39] : New block detected.
[2017-11-11 04:49:58] : Result accepted by the pool.
[2017-11-11 04:50:08] : Result accepted by the pool.
[2017-11-11 04:50:28] : Result accepted by the pool.
[2017-11-11 04:50:32] : Difficulty changed. Now: 12270.
[2017-11-11 04:50:32] : New block detected.
[2017-11-11 04:50:41] : Result accepted by the pool.
[2017-11-11 04:51:10] : Result accepted by the pool.
[2017-11-11 04:51:32] : New block detected.
[2017-11-11 04:52:28] : Result accepted by the pool.
[2017-11-11 04:52:32] : Difficulty changed. Now: 11790.
[2017-11-11 04:52:32] : New block detected.
[2017-11-11 04:52:32] : Result accepted by the pool.
发表于 2017-11-11 05:18:35 | 显示全部楼层
本帖最后由 CheapLolicon 于 2017-11-11 05:20 编辑

自己折腾了一下Debian 8的安装
各种出错,真是太艹了
谷歌了整晚总算解决了
解决发现后原来只是我没弄好gcc、g++和cmake问题而已


#安装gcc-5 g++-5 cmake等,并编译各种g++模块
  1. echo "deb http://ftp.us.debian.org/debian unstable main contrib non-free" >> /etc/apt/sources.list.d/unstable.list
  2. apt-get update
  3. apt-get install -t unstable gcc-5 g++-5 make
  4. update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 1 --slave /usr/bin/g++ g++ /usr/bin/g++-5
  5. curl -L http://www.cmake.org/files/v3.4/cmake-3.4.1.tar.gz | tar -xvzf - -C /tmp/
  6. cd /tmp/cmake-3.4.1/ && ./configure && make && make install && cd -
  7. update-alternatives --install /usr/bin/cmake cmake /usr/local/bin/cmake 1 --force
  8. apt install libmicrohttpd-dev libssl-dev libhwloc-dev
复制代码


#安装xmr-stak
  1. git clone https://github.com/fireice-uk/xmr-stak-cpu xmr-stak
  2. cd xmr-stak
  3. cmake .
  4. make install
复制代码



#出错方面
Q:make: *** No rule to make target 'install'.  Stop.
A:没cmake好,查看cmake的错误

Q:【cmake的错误】GCC version must be at least 5.1!
A:先查看gcc和g++默认版本
  1. gcc --version
  2. g++ --version
复制代码

显示版本为4+
就证明没安装好,重新安装一遍

显示版本为5+
  1. cmake -DCMAKE_CXX_COMPILER=/usr/bin/g++
复制代码

点评

触不及防,就上车了。  发表于 2017-11-14 13:53
大佬的黄图画得不错 233  发表于 2017-11-14 13:51
原来大佬喜欢画黄图  发表于 2017-11-12 15:20
发表于 2017-11-11 05:23:07 | 显示全部楼层
请问挖矿很消耗流量么?
 楼主| 发表于 2017-11-11 05:48:27 | 显示全部楼层
CheapLolicon 发表于 2017-11-11 05:18
自己折腾了一下Debian 8的安装
各种出错,真是太艹了
谷歌了整晚总算解决了

赞一个,我自己在Debian上面一开始也一直弄不出来,后来用了ubuntu就好了。。
发表于 2017-11-11 05:52:13 | 显示全部楼层
没有抢到特价机啊,回本不行了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|全球主机交流论坛

GMT+8, 2024-5-15 11:23 , Processed in 0.080533 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表