Big Blue Button (BBB) is a free, open source video conferencing solution that can be installed on Ubuntu machines and accessed via web browser. This software provides a free alternative to similar services such as Zoom and Google Meet. In this guide, we will outline how to install Big Blue Button on your Ubuntu machine.
Topics Include:
Install Big Blue Button on your Dedicated Hosting plan and start video conferencing today!
Installing Big Blue Button
- First, you will want to check the locale of your system using the following command:
cat /etc/default/locale
- In order for Big Blue Button to function properly, it must be set to en_US.ETF-8. If it is not set to that already, you can change the locale via the following command:
apt install -y language-pack-en && update-locale LANG=en_US.UTF-8
- If you are using a virtual server such as a VPS, you will need to add entropy, or randomness, to the server in order for Big Blue Button to function. To do this, we will install the haveged random number generator utility using the following command:
apt install -y haveged
- Next, you will need to add the multiverse repository to your repository (repo) list using the following command:
echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" | sudo tee -a /etc/apt/sources.list
- Then add the BBB repo using the following command:
wget http://ubuntu.bigbluebutton.org/repo/bigbluebutton.asc -O- | sudo apt-key add -
- Next, you will need to designate the URL of the packages being used for the installation using the following command:
echo "deb http://ubuntu.bigbluebutton.org/xenial-110/ bigbluebutton-xenial main" | sudo tee /etc/apt/sources.list.d/bigbluebutton.list
- Now, you can install BBB using the following command:
apt install bigbluebutton
Once the installation has finished, restart BBB with the following command:bbb-conf --restart
Configuring Browser Access
- To set up browser access, you will first need to install the BBB API demos using the following command:
apt install -y bbb-demo
- To access the login page, visit your hostname prefaced by “bbb-”, for example:
bbb-hostname.com
Congratulations, you have successfully installed Big Blue Button!