2020-04-28 17:29:52 +02:00
---
title: "Seti@Home "
date: 2018-03-05
2021-03-12 18:12:41 +01:00
description: Getting back into Seti@Home 15 years later
tags:
2021-09-13 00:48:07 +02:00
- linux
2021-03-12 18:12:41 +01:00
- toolbox
2020-04-28 17:29:52 +02:00
---
2021-03-12 18:12:41 +01:00
## Introduction
Me and some friends were feeling nostalgics of running Seti@Home as a screensaver in the early 2000s and were delighted to see that the project is still alive and kicking.
## The commands
2023-04-23 22:33:49 +02:00
```sh
2020-04-28 17:29:52 +02:00
apt install boinc
echo "graou" > /var/lib/boinc-client/gui_rpc_auth.cfg
systemctl restart boinc-client
boinccmd --host localhost --passwd graou --get_messages 0
boinccmd --host localhost --passwd graou --get_state|less
boinccmd --host localhost --passwd graou --lookup_account http://setiathome.berkeley.edu < EMAIL > XXXXXX
boinccmd --host localhost --passwd graou --project_attach http://setiathome.berkeley.edu < ACCOUNT_KEY >
2023-04-23 22:33:49 +02:00
```