在 Ubuntu 14.04.4 x64 上安装 cpuminer

在 Ubuntu 14.04.4 x64 上安装 cpuminer

我刚刚设置了一个服务器并尝试按照以下步骤安装 cpuminer:https://help.ubuntu.com/community/cpuminer

我已经下载了中央处理器目前位于/cpuminer

但是,我不太清楚如何运行编译命令。

我运行以下命令:

cd cpuminer ./autogen.sh ./configure CFLAGS="-O3" make

这什么都没返回。我做错了什么?

谢谢

答案1

默认构建目录是 /home/[name]/tmp/,或者 /home/[name]/ 中的其他文件夹。(不是 Desktop/)。

Ubuntu 14.04.5 - 64 没有问题:

$ sudo apt-get install g++ libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm git

$ cd tmp/
$ git clone https://github.com/pooler/cpuminer.git
$ cd cpuminer/
$ ./autogen.sh
$ ./configure
$ make

... 可执行文件minerd已创建。您可以执行以下操作:sudo make install

相关内容