Skip to content

Instantly share code, notes, and snippets.

@rdmueller
Last active April 30, 2020 09:12
Show Gist options
  • Save rdmueller/df0423043a61072478cc22956262754a to your computer and use it in GitHub Desktop.
Save rdmueller/df0423043a61072478cc22956262754a to your computer and use it in GitHub Desktop.
  • when you setup wifi:

    • the indentation of your file is correct - the example is wrong

    • change the network-config before you boot for the first time

    • boot a second time to see your raspberry coming up on the network

    • the arp command does not work (for me on windows). Take a look at your fritz box to see the IP of your raspberry

I succeeded with the following commands:

sudo su -
apt update
apt upgrade
# generate a gpg key
# use the name of your raspberry and your own email address
# use a secure password
gpg --gen-key
echo 'deb https://download.jitsi.org stable/' >> /etc/apt/sources.list.d/jitsi-stable.list
wget -qO -  https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add -
# Ensure support is available for apt repositories served via HTTPS
apt-get install apt-transport-https
# Retrieve the latest package versions across all repositories
apt-get update
apt-get upgrade
# Perform jitsi-meet installation
# when asked for the server name, type the IP of your raspberry
apt-get -y install jitsi-meet

Alternatives / ADRs

BigBlueButton instead of Jitsi: https://github.com/bigbluebutton/bbb-install

Raspian vs. Ubuntu

Most tutorials are for Raspian which makes Raspian the better OS for unexperienced people like me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment