Skip to content
Follow
Ubuntu Linux

How to Install Jitsi Meet on Ubuntu Linux

Richard
Written by
Richard
Oct 10, 2022 Updated Jul 14, 2026 4 min read
How to Install Google Chrome on Ubuntu Linux
How to Install Google Chrome on Ubuntu Linux

Installing Jitsi Meet on Ubuntu Linux lets you set up your own private video conferencing server.

Jitsi Meet is a free program that allows you to host unlimited, secure video meetings directly from your computer. It’s a great way to have more control over your online meetings than using services that store your data elsewhere.

This setup takes only a few minutes. Your Jitsi Meet server offers you full control over your data and meeting privacy. People can join your meetings using just their web browser for calls, chats, and sharing their screen, with no need for accounts.

This guide will show you how to get Jitsi Meet running on Ubuntu. You’ll soon have your own professional, encrypted video conferencing solution that you manage completely.

⚡ Quick Answer

Install Jitsi Meet by first updating your system and installing prerequisite packages like wget and curl. Then, add the Jitsi Meet repository using its GPG key and repository file, followed by installing the jitsi-meet package.

Install prerequisite

Before you install Jitsi Meet on Ubuntu, make sure your domain name points to your server’s IP address. Then, update your system’s package list and install important tools like wget and curl, which are needed for the next steps. This prepares your server to download and install the Jitsi Meet software correctly.

First, install the necessary support packages:

🐧Bash / Shell
sudo apt update
sudo apt install wget curl gnupg2 apt-transport-https
⚠️Warning
Next, you must open the ports your server needs to communicate with the outside world. Run these commands to configure your firewall:
🐧Bash / Shell
sudo ufw allow 80/tcp
sudo ufw allow 443/tcp
sudo ufw allow 10000:20000/udp
sudo ufw enable

Add Jitsi Meet repository and install

To install Jitsi Meet on Ubuntu, you first need to add its official software source. This is because Jitsi Meet isn’t available in the standard Ubuntu software lists. You’ll download a security key to verify the software and then add the Jitsi Meet repository to your system’s sources.

Download and save the GPG key to the correct keyring folder:

💻Code
curl https://download.jitsi.org/jitsi-key.gpg.key | gpg --dearmor > /usr/share/keyrings/jitsi-keyring.gpg

Next, add the repository to your system list and point it to your new keyring:

Command Prompt
echo "deb [signed-by=/usr/share/keyrings/jitsi-keyring.gpg] https://download.jitsi.org stable/" | sudo tee /etc/apt/sources.list.d/jitsi-stable.list > /dev/null

Now, update your system and install the software:

🐧Bash / Shell
sudo apt update
sudo apt install jitsi-meet
Terminal window showing the installation process of Jitsi Meet on Ubuntu
ubuntu linux install jitsi meet video conferencing

During installation, you will be asked for your domain name. Enter the domain you configured in your A-record. You will also be asked about SSL certificates; choosing “Let’s Encrypt” is the best option for a production server.

Configure Jitsi Meet

After you install Jitsi Meet on Ubuntu, you need to configure its settings. This involves editing important files like the prosody configuration for your domain name and the main Jitsi Meet JavaScript settings file. These steps ensure Jitsi Meet works correctly with your specific domain and preferences.

🐧Bash / Shell
sudo nano /etc/prosody/conf.avail/yourdomain.com.cfg.lua

You can also edit the main settings file here:

🐧Bash / Shell
sudo nano /etc/jitsi/meet/yourdomain.com-config.js

%📂%IMG1%%

If your server is behind a NAT or firewall, you may need to define your IP addresses. Open the properties file:

🐧Bash / Shell
sudo nano /etc/jitsi/videobridge/sip-communicator.properties

Add your local and public IP addresses to the file, then save and exit.

Your Jitsi Meet portal is now accessible by typing your domain name into your web browser. This setup allows for easy access to your video conferencing service from any device.

Conclusion

Installing Jitsi Meet on Ubuntu is straightforward thanks to its official repository, offering a flexible way to set up your own secure meeting service. You’ll benefit from easy configuration options, community support for any issues, and the reliability of open-source software.

How to install Jitsi server on Ubuntu?

List this is how you add a repository to your Ubuntu. Server. So let's press Enter.

Do you need to download Jitsi to use it?

No logging in or app installs necessary as Jitsi works like a charm right from your browser. If you dig apps more, try the Jitsi app (on iOS and Android). Start or join meetings sans account. Same no-fuss policy — no signing up, no headaches.

How to install jitsi meet on Linux Mint?

And then type flatpack install flatub or Jitsy dot. Jitsy-me Jity bash meat enter Y for yes. And then enter Y for. Yes.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *