Ubuntu16.04 docker 安装bigbluebutton1.1

安装docker的就不说了,我是直接安装的deb文件。

1、docker拉取ubuntu16.04镜像

 docker pull ubuntu:16.04

 2、docker运行,进入容器

docker run -d -i -t  --privileged=true -p 50001:80  ubuntu:16.04  /sbin/init

3、安装一写必要的东西

apt-get install vim 
apt-get install wget
apt-get install gnupg
apt-get install net-tools
apt-get install iputils-ping
apt-get install iproute2
apt-get install apt-transport-https
apt-get install sudo

4、编辑locale文件

vi /etc/default/locale

添加
#  File generated by update-locale
LANG="en_US.UTF-8"

5、安装bigbluebutton官方文档进行安装。

现在官方文档是安装的bigbluebutton2.0,安装步骤中

echo "deb https://ubuntu.bigbluebutton.org/xenial-200/ bigbluebutton-xenial main" | sudo tee /etc/apt/sources.list.d/bigbluebutton.list

应该修改为

echo "deb https://ubuntu.bigbluebutton.org/xenial-110/ bigbluebutton-xenial main" | sudo tee /etc/apt/sources.list.d/bigbluebutton.list

 

你可能感兴趣的:(Ubuntu,java)