1_Installation via apt-get
1. Using apt package manager :
-If you do not have the bos repository in your machine,-
(
sudo apt-get update
sudo apt-get install
ca-certificates
curl
gnupg
lsb-release
)
(
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://bos-debian-mirror.brinkhaus-gmbh.de/bos/gpg | sudo gpg dearmor -o /etc/apt/keyrings/bos.gpg
)
(
echo
"deb [arch=$(dpkg print-architecture) signed-by=/etc/apt/keyrings/bos.gpg] https://bos-debian-mirror.brinkhaus-gmbh.de:/bos
stable main" | sudo tee /etc/apt/sources.list.d/bos.list > /dev/null
)
(
sudo apt update
)
In order to set up the dataswitch, we need to initially set up one or more steam instances (for gateway services / input sources). For setting up steam instances, please use 'steam-n' where n is the index, in the below command. Currently we support upto 2 steam instances. If you require more instances, please reach out to us.
(
sudo apt install -y steam-1 steam-2 dataswitch
)
The end result of these steps is that you now have 2 gateway services (steam instances) and a dataswitch application installed in your machine.
-If dataswitch and steam instances are already installed in your machine and you only need to update it, then run update and install to get the latest package:
(
sudo apt update
)
(
sudo apt install -y steam-1 steam-2 dataswitch
)