You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

quick-install 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Quick install for Jitsi Meet on GNU/Linux systems
  2. This documents decribes the needed steps for quick Jitsi Meet installation on a Debian based GNU/Linux system.
  3. # Add the repository
  4. ```sh
  5. add-apt-repository 'http://download.jitsi.org/nightly/deb unstable/'
  6. ```
  7. 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
  8. ```sh
  9. apt-get -y install software-properties-common
  10. ```
  11. or add the repository by hand with
  12. ```sh
  13. echo 'deb http://download.jitsi.org/nightly/deb trusty unstable/' >> /etc/apt/sources.list
  14. ```
  15. # Update the package lists
  16. ```sh
  17. apt-get update
  18. ```
  19. # Install Jitsi Meet
  20. ```sh
  21. apt-get -y install jitsi-meet
  22. ```
  23. 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).
  24. 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.
  25. # Open a conference
  26. 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.
  27. Confirm that you trust the self-signed certificate of the newly installed Jitsi Meet.
  28. Enjoy!