Install Ubuntu on your Raspberry: https://ubuntu.com/tutorials/how-to-install-ubuntu-on-your-raspberry-pi#1-overview
-
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
-
Install jitsi: https://community.jitsi.org/t/jitsi-meet-on-raspberry-pi-4-feasible-or-not/24457/7 und https://github.com/jitsi/jitsi-meet/blob/master/doc/quick-install.md
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
next step: setup as wireless access point: https://www.raspberrypi.org/documentation/configuration/wireless/access-point-routed.md
BigBlueButton instead of Jitsi: https://github.com/bigbluebutton/bbb-install
Most tutorials are for Raspian which makes Raspian the better OS for unexperienced people like me.