如何安装cpuminer?


9

我正在尝试根据本教程安装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和Mining的新手。


aclocal在终端上键入时会得到什么?
jobin 2014年

Answers:


6

看来您缺少包裹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

@smurf嘿,谢谢,它工作了,但是现在在尝试登录到矿池时出现了另一个问题,它显示了此错误bash:./minerd:没有这样的文件或目录。任何想法如何解决这个问题
Eka 2014年

这意味着bash脚本正在尝试从当前目录启动程序minerd,但没有此类程序。找出新编译的minerd所在的位置(命令为'find〜-name minerd -type f'),转到该目录,然后重试。
sмurf
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.