Wiki source code of 1_Installation via apt-get
Last modified by Jan Brinkhaus on 2023/04/11 13:04
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | If you do not have the bos repository in your machine, | ||
2 | |||
3 | |||
4 | {{code language="none"}} | ||
5 | sudo apt-get update | ||
6 | sudo apt-get install | ||
7 | ca-certificates | ||
8 | curl | ||
9 | gnupg | ||
10 | lsb-release | ||
11 | {{/code}} | ||
12 | |||
13 | {{code language="none"}} | ||
14 | sudo mkdir -p /etc/apt/keyrings | ||
15 | |||
16 | curl -fsSL https://bos-debian-mirror.brinkhaus-gmbh.de/bos/gpg | sudo gpg dearmor -o /etc/apt/keyrings/bos.gpg | ||
17 | |||
18 | echo "deb [arch=$(dpkg print-architecture) signed-by=/etc/apt/keyrings/bos.gpg] https://bos-debian-mirror.brinkhaus-gmbh.de:/bos | ||
19 | stable main" | sudo tee /etc/apt/sources.list.d/bos.list > /dev/null | ||
20 | |||
21 | sudo apt update | ||
22 | {{/code}} | ||
23 | |||
24 | |||
25 | 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. | ||
26 | |||
27 | {{code language="none"}} | ||
28 | sudo apt install -y steam-1 steam-2 dataswitch | ||
29 | {{/code}} | ||
30 | |||
31 | The end result of these steps is that you now have 2 gateway services (steam instances) and a dataswitch application installed in your machine. | ||
32 | |||
33 | |||
34 | 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: | ||
35 | |||
36 | {{code language="none"}} | ||
37 | sudo apt update | ||
38 | |||
39 | sudo apt install -y steam-1 steam-2 dataswitch | ||
40 | {{/code}} |