Created
May 15, 2020 11:50
-
-
Save vicente-gonzalez-ruiz/bde9e92f76309f2ae3ae3868ebd6286f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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