ページ

2017年3月1日水曜日

UbuntuへGridcoinをインストール

参考サイト


GridcoinのWikiサイト(英語)に、Linuxでのインストール方法が載っています。
Linux Downloads (pre-compiled) - Gridcoin

インストールに関して、こちらのサイトも使えるかもしれません。
gridcoin-stable : “Gridcoin” team


インストール


Gridcoinの採掘プログラムを配布しているレポジトリを追加します。
sudo addapt-repository ppa:gridcoin/gridcoin-stable
sudo apt-get update


次に採掘プログラムをインストールしますが、Wikiには以下のように書かれています。
つまり、以下の2つのいづれかをインストールすれば良いです。
You have two choices for the wallet; a headless daemon or a graphical interface. (QT)
GUI(ウィンドウがあるほう)を使いたければ、こちらをインストールします。
sudo apt-get install gridcoinresearch-qt 

デーモン("the headless daemon")を使いたい、画面表示なんていらなければ、こちらをインストールします。
 sudo apt-get install gridcoinresearchd


設定


Wikiには、以下のように書かれています。ファイルに設定を書かなければならないようです。
If that's your first time running gridcoin, you will probably want to initialize the default configuration first. You can do this by simply starting up gridcoin, and quiting after it has been loaded (no need to wait for it to finish to sync).

設定ファイルを開きます。
どのエディタで開いても構いませんが、使いやすくわかりやすいテキストエディタ(gedit)を使います。
 gedit ~/.GridcoinResearch/gridcoinresearch.conf


以下の内容をコピペします。
email=<your email, must match your BOINC projects>
server=1
daemon=1
rpcallowip=127.0.0.1
rpcuser=<username (anything you want, does not need to match BOINC)>
rpcpassword=<password (anything you want, does not need to match BOINC)>
addnode=node.gridcoin.us

1行めの
<your email, must match your BOINC projects>
には、BOINCに登録したメールアドレスを入力してください。

5行目の
<username (anything you want, does not need to match BOINC)>
には、適当なユーザー名を入力してください。これは、BOINCに登録したものでなくても構いません。

6行目の
<password (anything you want, does not need to match BOINC)>
には、適当なパスワードを入力してください。これは、BOINCに登録したものでなくても構いません。


これで完了のはずです。お疲れ様でした。


GUIの場合、以下のコマンドで実行可能です。
gridcoinresearch