|
@@ -7,22 +7,6 @@ N.B.: All commands are supposed to be run by root. If you are logged in as a reg
|
7
|
7
|
## Basic Jitsi Meet install
|
8
|
8
|
|
9
|
9
|
### Add the repository
|
10
|
|
-
|
11
|
|
-```sh
|
12
|
|
-add-apt-repository 'deb http://download.jitsi.org/nightly/deb unstable/'
|
13
|
|
-wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add -
|
14
|
|
-```
|
15
|
|
-
|
16
|
|
-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
|
17
|
|
-
|
18
|
|
-```sh
|
19
|
|
-apt-get -y install software-properties-common
|
20
|
|
-add-apt-repository 'deb http://download.jitsi.org/nightly/deb unstable/'
|
21
|
|
-wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add -
|
22
|
|
-```
|
23
|
|
-
|
24
|
|
-or add the repository by hand with
|
25
|
|
-
|
26
|
10
|
```sh
|
27
|
11
|
echo 'deb http://download.jitsi.org/nightly/deb unstable/' >> /etc/apt/sources.list
|
28
|
12
|
wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add -
|