[Solved] How does one start a node on an ARM computer these days?

I haven’t visit this place in a long time, so I checked to see what has changed and well… what happened to installing an executable node app?

Why is it heading into the direction of X86 computers? Those are desktops. Don’t you want nodes to be run by SBCs? I thought that was the whole idea to have small dedicated servers for autonomi. That would be the most logical.

And does one really need 8GB of RAM? Is the node that RAM intensive?

Can I install a node from source, if so, how?

Okay, I’ve got it:

Download the CLI on your SBC

$ curl -fsSL https://raw.githubusercontent.com/WithAutonomi/ant-client/main/install.sh | bash
$ echo "export PATH=\"/home/folaht/.local/bin:\$PATH\"" | sudo tee /etc/profile.d/local.sh
$ . /etc/profile.d/local.sh

Get an ethereum wallet on metamask.
Copy the wallet address.

And then create a node on your SBC

$ ant node add --rewards-address <metamask account address>
$ ant node deamon start
$ ant node start
1 Like