どうすれば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をインストールし、 `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とマイニングが初めてです。


aclocalターミナルでタイプすると何が得られますか?
ジョビン14

回答:


6

パッケージが不足しているようです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

@smurfうまくいきましたが、マイニングプールにログインしようとしたときに別の問題が表示され、次のエラーbashが表示されます:./minerd:そのようなファイルやディレクトリはありません。これを解決するためのアイデア
Eka

これは、bashスクリプトが現在のディレクトリからプログラムminerdを起動しようとしているが、そのようなプログラムがないことを意味します。新しくコンパイルされたminerdがどこにあるかを調べ(コマンドは 'find〜-name minerd -type f`です)、そのディレクトリに移動して再試行します。
sмurf
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.