Skip to main content

Installing a Mysterium Node Using a Prebuilt DEB Package

Written by Andzej Korkuz

1. Choose the correct package

Prebuilt .deb packages are available on the official releases page

Download the .deb file that matches your system architecture:

  1. Most common (Intel/AMD PCs, cloud VMs):

    myst_linux_amd64.deb

  2. ARM 64-bit (Raspberry Pi 4, ARM servers):

    myst_linux_arm64.deb

  3. Older ARM devices:

    myst_linux_armhf.deb or armv6l

If unsure, run:

uname -m

Output

Use this package

x86_64

amd64

aarch64

arm64

armv7l

armhf


2. Download the package

You can download the package using either wget or curl

Option A: wget

Replace the filename if you are using a different architecture:

wget https://github.com/MysteriumNetwork/node/releases/latest/download/myst_linux_amd64.deb

Option B: curl

Replace the filename if you are using a different architecture:

curl -LO https://github.com/MysteriumNetwork/node/releases/latest/download/myst_linux_amd64.deb

If neither command is available, install one:

sudo apt update
sudo apt install wget

or

sudo apt install curl

3. Install the package

sudo dpkg -i myst_linux_amd64.deb

If you see dependency errors, fix them with:

sudo apt-get install -f

4. Verify the node is running

sudo systemctl status mysterium-node

You should see:

active (running)

5. Manage the service

Start / Stop / Restart:

sudo systemctl start mysterium-node
sudo systemctl stop mysterium-node
sudo systemctl restart mysterium-node

6. Change configuration (optional)

Edit config file:

sudo nano /etc/default/mysterium-node

Apply changes:

sudo systemctl daemon-reload
sudo systemctl restart mysterium-node

7. Access node UI

Once running, open in browser:

http://<your-server-ip>:4449
Did this answer your question?