-
Notifications
You must be signed in to change notification settings - Fork 20
Description
If that can help anyone here, I managed to make the script work on my RPI 4 Argon One V2, M2 SATA and Raspbian Bookworm 64 bits.
Here’s what I did:
Install the standard script with curl https://download.argon40.com/argon1.sh | bash
The script will hang at some point. Just kill it, it won’t create any problem
Modify the service file sudo vi /usr/lib/systemd/system/argononed.service and replace the line After=multi-user.target with After=network.target
Reload the systemctl daemon sudo systemctl daemon-reload
Restart the argononed daemon sudo systemctl restart argononed
And now the fan should work as expected, at least that fixed it for me. I hope it helps someone here too!
Thomas
Thanks to Thomas
This fixed issue for me.
Error was reprodusable by commands
cd /etc/argon
sudo python3 argononed.py SERVICE
Traceback (most recent call last):
File "argononed.py", line 29, in <module>
from argonregister import *
File "/etc/argon/argonregister.py", line 8, in <module>
import smbus
ModuleNotFoundError: No module named 'smbus'