>>882
BOINCスレ(未設立)のテンプレの感想どうもありがとうございます。うまく動作してよかったです!


>結局raspbianではできませんでした。>5回チャレンジしてだめなんで

arm-unknown-linux-gnueabihf アーキテクチャで動作するわけですよね。

次にページにこれに関した記載がありましたので、載せておきます。ひょっとしたら、これが解決方法だったかもしれません。

https://www.element14.com/community/thread/75254/l/set-your-processors-to-analyse-for-the-covid-19-virus

"This project doesn't support computers of type arm-unknown-linux-gnueabihf".
I encountered this problem and I had to do the following.
If you find that no matter what you do, BOINC still throws 'arm-unknown-linux-gnueabihf' then try running:
(何をしても、arm-unknown-linux-gnueabihf となるなら、次のようにしてみてください)

$ sudo apt-get purge --auto-remove boinc-client boinctui boinc-manager

Then say 'yes' to the prompt that appears, and then run:

$ sudo apt-get install boinc-client boinc-manager boinctui boinc-client-opencl libgl1-mesa-glx


一つ目のコマンド、apt-get purge は、apt-get --purge remove と同じ意味らしく、
設定ファイルを含めて削除するという意味です。設定に何か不具合があると考えて、それごといったん削除して、
そして、二つ目のコマンドで、再インストールを行うという事なのだろうと思います。

以上ご参考までに。