Skip to content

boinc BOINC

🛠 Installation

Configuration path: /etc/boinc-client/

(
  add-apt-repository universe && \
  apt update && \
  apt install boinc-client boinc-client-nvidia-cuda boinc-client-opencl && \
  usermod -aG boinc $(whoami) && \
  systemctl enable --now boinc-client && \
  ps aux | grep boinc
)

⚙ Config

📝 Usage

Get key from here.

(
  boinccmd --project_attach https://sech.me/boinc/Amicable/ <key> && \
  boinccmd --get_project_status
  boinccmd --get_task_summary
)

🩺 Troubleshooting

If gui_rpc_auth.cfg is blank, create a backup and restart service.

cat /etc/boinc-client/gui_rpc_auth.cfg
(
  cd /etc/boinc-client/ && \
  mv gui_rpc_auth.cfg gui_rpc_auth.cfg.bak && \
  service boinc-client restart && \
  cat /etc/boinc-client/gui_rpc_auth.cfg
)

🔗 References