| | 1 | = Install Jitsi Meet on Linux = |
| | 2 | |
| | 3 | [wiki:web-conference Jitsi Meet] is a program to hold video-based web meetings. This page covers how to install the jitsi meet app on a Linux computer. |
| | 4 | |
| | 5 | == App Image == |
| | 6 | |
| | 7 | The jitsi meet developers regularly [https://github.com/jitsi/jitsi-meet-electron/releases release an appimage] of the jitsi meet app for Linux. An [https://itsfoss.com/use-appimage-linux/ AppImage] is an alternative to the standard way programs are distributed for Linux (e.g. on Debian based system we use the `apt` or `apt-get` or `dpkg` tool to install .deb files, on Redhat, we use the `rpm` tool, etc). |
| | 8 | |
| | 9 | AppImages work on all versions of Linux. |
| | 10 | |
| | 11 | == Download == |
| | 12 | |
| | 13 | The first step is to download and save the most recent [https://github.com/jitsi/jitsi-meet-electron/releases release] that ends with the `.AppImage` extension. |
| | 14 | |
| | 15 | By default, your browser may automatically save it to your Downloads folder. If you are prompted to choose a folder, please choose your Downloads folder. |
| | 16 | |
| | 17 | == Change permissions == |
| | 18 | |
| | 19 | Next, you have to make the file executable. |
| | 20 | |
| | 21 | Right click on the file and click `Properties` |
| | 22 | |
| | 23 | Then, click the Permissions tab. |
| | 24 | |
| | 25 | Then place a checkmark in the "Allow executing file as program" |
| | 26 | |
| | 27 | == Make it show up in your menu system == |
| | 28 | |
| | 29 | Next, we have to create a "desktop" file for it, so it will show up in your menu system. |
| | 30 | |
| | 31 | To make this file, you will need to open your terminal program and type the following: |
| | 32 | |
| | 33 | {{{ |
| | 34 | mkdir -p ~/.local/share/applications |
| | 35 | wget "https://raw.githubusercontent.com/jitsi/jitsi-meet-electron/master/resources/icons/icon_128x128.png" -o ~/Downloads/jitsi-meet.png |
| | 36 | printf "[Desktop Entry]\nEncoding=UTF-8\nVersion=1.0\nType=Application\nTerminal=false\nExec=~/Downloads/jitsi-meet-x86_64.AppImage --no-sandbox\nName=Jitsi Meet&Icon=~/Downloads/jitsi-meet.png\n" > ~/.local/share/applications/jitsi-meet.desktop |
| | 37 | }}} |
| | 38 | |