|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+# Quick install for Jitsi Meet on GNU/Linux systems
|
|
|
2
|
+
|
|
|
3
|
+This documents decribes the needed steps for quick Jitsi Meet installation on a Debian based GNU/Linux system.
|
|
|
4
|
+
|
|
|
5
|
+# Add the repository
|
|
|
6
|
+
|
|
|
7
|
+```sh
|
|
|
8
|
+add-apt-repository 'http://download.jitsi.org/nightly/deb unstable/'
|
|
|
9
|
+```
|
|
|
10
|
+
|
|
|
11
|
+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
|
|
|
12
|
+
|
|
|
13
|
+```sh
|
|
|
14
|
+apt-get -y install software-properties-common
|
|
|
15
|
+```
|
|
|
16
|
+
|
|
|
17
|
+or add the repository by hand with
|
|
|
18
|
+
|
|
|
19
|
+```sh
|
|
|
20
|
+echo 'deb http://download.jitsi.org/nightly/deb trusty unstable/' >> /etc/apt/sources.list
|
|
|
21
|
+```
|
|
|
22
|
+
|
|
|
23
|
+# Update the package lists
|
|
|
24
|
+
|
|
|
25
|
+```sh
|
|
|
26
|
+apt-get update
|
|
|
27
|
+```
|
|
|
28
|
+
|
|
|
29
|
+# Install Jitsi Meet
|
|
|
30
|
+
|
|
|
31
|
+```sh
|
|
|
32
|
+apt-get -y install jitsi-meet
|
|
|
33
|
+```
|
|
|
34
|
+
|
|
|
35
|
+During the installation you'll be asked to enter the hostname of the Jitsi Meet instance. If you have a FQDN hostname for the instance already set ip in DNS, enter it there. If you don't have a resolvable hostname, you can enter the IP address of the machine (if it is static or doesn't change).
|
|
|
36
|
+
|
|
|
37
|
+This hostname (ot IP address) will be used for virtualhost configuration inside the Jitsi Meet and also you and your correspondents will be using it to access the web conferences.
|
|
|
38
|
+
|
|
|
39
|
+# Open a conference
|
|
|
40
|
+
|
|
|
41
|
+Launch a web broswer (Chrome, Chromium or latest Opera) and enter in the URL bar the hostname (or IP address) you used in the previous step.
|
|
|
42
|
+
|
|
|
43
|
+Confirm that you trust the self-signed certificate of the newly installed Jitsi Meet.
|
|
|
44
|
+
|
|
|
45
|
+Enjoy!
|