Skip to main content

Installation on Linux

Get access to a Terminal in order to run the provided commands.

Terminal Access on the Glue Pi OS Image

If you're running the Glue Pi OS Image, you have two options to get access to a terminal:

  1. Connect a Keyboard and a monitor.
  2. Then, login with the following credentials:
    Username: glue
    Password: makepro-x

Then, you need to add our GPG public key and our repository to your sources.list file like so:

type -p curl >/dev/null || sudo apt install curl -y
curl -fsSL https://dist.makepro-x.com/debian/makepro-x-dist-keyring.gpg | sudo dd of=/usr/share/keyrings/makepro-x-dist-keyring.gpg \
&& sudo chmod go+r /usr/share/keyrings/makepro-x-dist-keyring.gpg \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/makepro-x-dist-keyring.gpg] https://dist.makepro-x.com/debian stable main" | sudo tee /etc/apt/sources.list.d/makepro-x-dist.list > /dev/null

Update your package information using

sudo apt update

and install Glue with

sudo apt install glue

Done!

Get more info about how to start or stop Glue and on how to view the logs here.