Skip to content

Instantly share code, notes, and snippets.

@vicente-gonzalez-ruiz
Created May 15, 2020 11:50
Show Gist options
  • Save vicente-gonzalez-ruiz/bde9e92f76309f2ae3ae3868ebd6286f to your computer and use it in GitHub Desktop.
Save vicente-gonzalez-ruiz/bde9e92f76309f2ae3ae3868ebd6286f to your computer and use it in GitHub Desktop.
# Install Boinc and activate the service
sudo pacman -S boinc-nox
sudo systemctl enable boinc-client.service
sudo systemctl start boinc-client.service
sudo systemctl status boinc-client.service
# Check the service:
boinccmd --passwd <content of /var/lib/boinc/gui_rpc_auth.cfg> --get_host_info
# Create an account:
boinccmd --passwd <content of /var/lib/boinc/gui_rpc_auth.cfg> \
--create_account https://boinc.bakerlab.org/rosetta/ \
<email-address> \
<your password> \
<your usename (your email, for example)>
# This would return an "account key".
# Attach to the project (see https://boinc.bakerlab.org/rosetta/join.php):
boinccmd --passwd <content of /var/lib/boinc/gui_rpc_auth.cfg> \
--project_attach https://boinc.bakerlab.org/rosetta/
<the account key>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment