π§Linux Setup Guide
1. Determine the CPU architecture π§
Run in terminal:
uname -m
Interpretation:
AMD-compatible:
x86_64,i386,i486,i586,i686,amd64ARM-compatible:
aarch64,arm64,armv7l,armv6l,armv5tel
2. Install Docker π³
Follow the official guide for your distribution:
General: Docker Docs
Ubuntu: Install on Ubuntu
Debian: Install on Debian
Fedora: Install on Fedora
Arch: Install on Arch Linux
RHEL: Install on RHEL
Verify installation:
docker --versionExpected: prints a version string

3. Sign in to the dashboard and create a node π
Register and sign in: neuralpro.net
Open the dashboard and create a node

4. Create and start the node following the official guide π
Step A β Choose machine architecture π§©
Select the correct architecture when creating the node.

Step B β Choose CPU usage percentage π
Set the percentage of CPU computing power to allocate.

Step C β Pull the official image π₯
Method 1 β Copy your personalized command:
Click the copy button

Paste into terminal and run

Method 2 β Manually pull in terminal:
docker pull neuralpro/neuralpro-amd:v1
Step D β Start the container βΆοΈ
Method 1 β Copy your personalized start command:
Click the copy button

Paste into terminal and run

Method 2 β Start manually with parameters:
Parameters to prepare:
REGISTRATION_CODE: retrieve from the official dashboardDEVICE_ID: retrieve from the official dashboardCPU_THRESHOLD: choose your preferred percentage
Run:
docker run -d --name neuralpro-integrated \
-e BACKGROUND_MODE=true \
-e REGISTRATION_CODE="" \
-e DEVICE_ID="" \
-e CPU_THRESHOLD="" \
neuralpro/neuralpro-amd:v1
Step E β Wait for the node to connect β³

Step F β Connection completed β

Last updated