-
Running 2.3.7 - trying to upgrade to 2.4.0. When I use the commands shown online for upgrading on the Wiki - I get the following. root@aqualinkd: I then go into Aqmanager to verify what version it is - and it still shows 2.3.7 - so it doesn't look like it performed the upgrade. I'd prefer to not have to wipe the full RPi and reformat and all that to upgrade between these versions. Any ideas? Let me know if you need any other screenshots. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
it looks like you re-installed 2.3.7 over the top of itself. That basically didn't pull the latest version. |
Beta Was this translation helpful? Give feedback.
The below is in reply too #348 (reply in thread)
It looks like you are getting confused with standard user and root user.
~ means home directly, when you are standard user that's different to when you are root. When root ~ means /root, then user ~ means /home/user.
I think you probably have aqua.sh in a users home directory, but every command you try you are root, so it's trying to find that in root home directly.
I'm not sure what your regular user name is, so I can't give you the commands to run. BUT, best bet. Start a new ssh session, that will log you in as standard user in home directory.
run.
ls -a aqua.sh
If you get a file then run
sudo ./aqua.sh release
If you get no file found t…