LoginSignup
3
3

More than 5 years have passed since last update.

BOINCクライアントのインストール CentOS7にて

Last updated at Posted at 2015-09-12

CentOSでboincクライアントを使用するには自分でビルドするしか方法がないようです。

結果だけ書きます。

cd ~
git clone https://github.com/BOINC/boinc boinc

cd ~/boinc

sudo yum install libcurl-devel libcurl openssl-dev gcc-c++

sudo yum install git make automake m4 libtool autoconf

./configure --disable-server --disable-manager --enable-libraries

make

boinc の起動

cd ~/boinc/boinc/client
たとえばWCGの場合は
./boinc --attach_project www.worldcommunitygrid.org [あなたのキー(WCGのHPにログインして確認する)]

途中でいくつか警告が発生するが無視を決め込む。

diagnostics.cpp:707:6: warning: unused parameter 'siginfo' [-Wunused-parameter]
void boinc_catch_signal(int signal, struct siginfo *siginfo, void *sigcontext)...

経緯:勉強用に格安VPSを借りているが、未使用時間がもったいなく感じていたので自分が使用しないときはフルに計算資源を使い切ってやろう・・・という貧乏性からインストールに至りました。(管理者さんにはうれしくないのかも・・・。まぁいいk...)

参考URI
BOINC Configuration @BarkeleyUniv
BOINC Compiling Client @BarkeleyUniv
インストールに必要なパッケージなど@BarkelryUniv
[ビルドの大まかな手順@BarkeLeyUniv](http://boinc.berkeley.edu/trac/wiki/BuildSystem#no1

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3