|
|
@@ -8,6 +8,7 @@ This documents decribes the needed steps for quick Jitsi Meet installation on a
|
|
8
|
8
|
|
|
9
|
9
|
```sh
|
|
10
|
10
|
add-apt-repository 'deb http://download.jitsi.org/nightly/deb unstable/'
|
|
|
11
|
+wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add -
|
|
11
|
12
|
```
|
|
12
|
13
|
|
|
13
|
14
|
add-apt-repository is in the default Ubuntu install and is available for both Ubuntu and Debian, but if it's not present, either install it with
|
|
|
@@ -15,12 +16,14 @@ add-apt-repository is in the default Ubuntu install and is available for both Ub
|
|
15
|
16
|
```sh
|
|
16
|
17
|
apt-get -y install software-properties-common
|
|
17
|
18
|
add-apt-repository 'deb http://download.jitsi.org/nightly/deb unstable/'
|
|
|
19
|
+wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add -
|
|
18
|
20
|
```
|
|
19
|
21
|
|
|
20
|
22
|
or add the repository by hand with
|
|
21
|
23
|
|
|
22
|
24
|
```sh
|
|
23
|
25
|
echo 'deb http://download.jitsi.org/nightly/deb trusty unstable/' >> /etc/apt/sources.list
|
|
|
26
|
+wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add -
|
|
24
|
27
|
```
|
|
25
|
28
|
|
|
26
|
29
|
### Update the package lists
|