この 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とマイニングは初めてです。
パッケージ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