最近要用到bigbluebutton,就现在自己的机子上配置一下,下面是安装过程。
官方安装文档:http://docs.bigbluebutton.org/install/install.html
文档中提到了两种安装方法,我使用较为简单的apt安装的方法,毕竟包管理器用起来方便。
首先,添加apt-key
$ wget http://ubuntu.bigbluebutton.org/repo/bigbluebutton.asc -O- | sudo apt-key -
然后,添加更新源
$ echo "deb http://ubuntu.bigbluebutton.org/xenial-110 bigbluebutton main" | sudo tee /etc/apt/sources.list.d/bigbluebutton.list
这个命令看起来很复杂,其实就是在
/etc/apt/sources.list.d
目录下建一个文件
bigbluebutton.list
然后在文件中添加
deb http://ubuntu.bigbluebutton.org/xenial-110/ bigbluebutton-xenial main
然后执行:sudo apt update
最后,安装bigbluebutton
sudo apt install bigbluebutton
这就是最基本的安装,后续的可以看官方文档。