我刚刚在 Ubuntu 14.04 上安装了 bitcoin-qt 钱包并与比特币网络同步。如何安装使我能够加入矿池的挖矿程序?
Lor*_*ora 16
要挖掘比特币,请使用cpuminer(单击此处)并避免使用任何图形应用程序:控制台应用程序速度更快,并且不需要太多内存。这可能就是bitcoin-qt钱包放弃了官方对比特币挖矿的支持的原因。
您应该从源代码编译 cpuminer 以获得最佳性能。二进制包未针对您的系统进行优化,因此通常速度较慢。要在 Ubuntu 上执行 cpuminer 安装 + 编译过程,请按照此 askUbuntu 主题进行操作。
警告:不要在远程托管机器上使用 cpuminer 或任何矿工软件,这被认为是对公共资源的滥用,可以被视为对托管系统的攻击。
注意:比特币挖掘非常耗时,您需要一个非常强大的服务器网络才能获得很小的结果(在大多数情况下小于比特币)。这是由于这样的事实,你是人与运行高度专业化的硬件(组织竞争ASIC miners,FPGA devices这不只是计算BTC块哈希24小时,每天等)。
如果您有更多问题,请随时通过评论在这里提问,如果我有任何帮助,请不要忘记按左向上箭头。
如果您获得了硬币,请考虑自由软件基金会 BTC 捐赠页面。
祝你好运。
对于溶液ASIC框图Erupter矿工使用cgminer
https://github.com/equivalent/scrapbook2/blob/master/bitcoin-mining.md
# run all commands are under su or sudo
# step 1
apt-get install autoconf gcc make git libcurl4-openssl-dev libncurses5-dev libtool libjansson-dev libudev-dev libusb-1.0-0-dev
# step 2
cd /usr/src/
git clone https://github.com/ckolivas/cgminer.git
# step 3
cd cgminer
./autogen.sh --enable-icarus
# step 4
make
# step 5
# Plug your ASICMiner Block Erupter USB’s into the USB ports of your device.
# step 6
./cgminer -o http://your.pool.com:8332 -u username_worker -p yourpassword
Run Code Online (Sandbox Code Playgroud)