web-dev-qa-db-ja.com

cpuminerをインストールするにはどうすればよいですか?

この tutorial に従って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をインストールし、 `cpuminerをgitからダウンロードしました。しかし、コンパイルしようとしたときにこのエラーが発生しました:

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とマイニングは初めてです。

9
Eka

パッケージautomakeがないようです。それをインストールするには、Ubuntu Software Centerを開き、automakeを検索します。

手がかりは

./autogen.sh: aclocal: not found

スクリプトautoget.sh(マイナーの一部)は、検出されなかったaclocalプログラムを使用しようとしています。

どのファイルがどのパッケージに属しているかを調べるには、ターミナルウィンドウでこれらのコマンドを使用します(1回のみ):

Sudo apt-get install apt-file
Sudo apt-file update

プログラムaclocalを含むパッケージを検索します。

apt-file search aclocal
5
sмurf