我如何安装 cpuminer?

我如何安装 cpuminer?

我正在尝试按照此方法安装 cpuminer教程. 本教程介绍如何使用终端安装 cpuminer。

sudo apt-get install libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm

# clone cpuminer
git clone https://github.com/pooler/cpuminer.git

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

# choose a miner pool and register there

# start the miner
./minerd --url=your.minerpool.org --user=username --pass=password

我已经安装了 git 并从 git 下载了`cpuminer。但是当尝试编译它时出现此错误:

user@user-Dell-Notebook-PC:~$ cd cpuminer
user@user-Dell-Notebook-PC:~/cpuminer$ ./autogen.sh
./autogen.sh: 8: ./autogen.sh: aclocal: not found
user@user-Dell-Notebook-PC:~/cpuminer$ 

我是 Ubuntu 和挖矿的新手。

答案1

您似乎缺少软件包automake。要安装它,请打开 Ubuntu 软件中心并搜索automake

线索来自

./autogen.sh: aclocal: not found

该脚本autoget.sh(矿工的一部分)正在尝试使用aclocal未找到的程序。

要找出哪个文件属于哪个包,请在终端窗口中使用这些命令(仅一次):

sudo apt-get install apt-file
sudo apt-file update

搜索包含该程序的软件包 aclocal

apt-file search aclocal

相关内容