BigBlueButton: Difference between revisions
Brian Wilson (talk | contribs) mNo edit summary |
Brian Wilson (talk | contribs) mNo edit summary |
||
Line 1: | Line 1: | ||
== Overview == | |||
Currently installing on Dart. | |||
BBB is a conferencing system, it supports what I need to replace Google Hangouts. | |||
It is a "learning conference system" which means it is designed for delivering | |||
presentations over the Internet (like a classroom). | |||
Some features | |||
* Audio conference (via freeswitch) | |||
* Presenter and viewers can share output of web cam. | |||
* Presenter can display slides, and mark them up. | |||
* Presenter can mute viewer microphones, and lock them in muted mode. | |||
* Presenter can yield control to a viewer. | |||
* Presenter can share desktop (requires Java) | |||
=== Pros === | |||
Requires either Firefox or Chrome browser and no extra plugins are required. | |||
Except for sharing desktop which requires Java, nothing else need be installed. | |||
=== Cons === | |||
Server installation is relatively complex. Might want to run the virtual image. | |||
Trying a build from git source tree first. | |||
== Prerequisites == | == Prerequisites == | ||
=== yum install === | === Vis yum install === | ||
* nginx 1.0.15 | * nginx 1.0.15 | ||
Line 9: | Line 34: | ||
* ImageMagick 6.5.4.7 | * ImageMagick 6.5.4.7 | ||
* libreoffice allows sharing docs by converting them to PDF | * libreoffice allows sharing docs by converting them to PDF | ||
* libyaml | * libyaml libyaml-dev (for supporting gem in ruby) | ||
=== nginx migration === | === nginx migration === | ||
Line 37: | Line 62: | ||
=== Sources === | === Sources === | ||
'''freeswitch | '''freeswitch''' -- They recommend building from git sources | ||
git clone git://git.freeswitch.org/freeswitch.git | git clone git://git.freeswitch.org/freeswitch.git | ||
Line 49: | Line 74: | ||
'''ruby''' the version in Centos is 1.8.7 and BBB requires 1.9.2 | '''ruby''' the version in Centos is 1.8.7 and BBB requires 1.9.2 | ||
Version 2 is out but being cautious today I installed the newest of the 1. series, 1.9.3 | Version 2 is out but being cautious today I installed the newest of the 1. series, 1.9.3 | ||
'''ffmpeg''' | |||
== BBB == | == BBB == | ||
Now that the prereq's are out of the way... | Now that the prereq's are out of the way... BBB includes instructions for | ||
installing in Ubuntu and also a virtual machine image. | |||
git clone https://github.com/bigbluebutton/bigbluebutton.git | git clone https://github.com/bigbluebutton/bigbluebutton.git | ||
http://wiki.freeswitch.org/wiki/Linux_Quick_Install_Guide | http://wiki.freeswitch.org/wiki/Linux_Quick_Install_Guide |
Revision as of 03:59, 9 February 2014
Overview
Currently installing on Dart.
BBB is a conferencing system, it supports what I need to replace Google Hangouts. It is a "learning conference system" which means it is designed for delivering presentations over the Internet (like a classroom).
Some features
- Audio conference (via freeswitch)
- Presenter and viewers can share output of web cam.
- Presenter can display slides, and mark them up.
- Presenter can mute viewer microphones, and lock them in muted mode.
- Presenter can yield control to a viewer.
- Presenter can share desktop (requires Java)
Pros
Requires either Firefox or Chrome browser and no extra plugins are required. Except for sharing desktop which requires Java, nothing else need be installed.
Cons
Server installation is relatively complex. Might want to run the virtual image. Trying a build from git source tree first.
Prerequisites
Vis yum install
- nginx 1.0.15
- redis 2.4.10
- swftools 0.9.1
- ImageMagick 6.5.4.7
- libreoffice allows sharing docs by converting them to PDF
- libyaml libyaml-dev (for supporting gem in ruby)
nginx migration
http://www.if-not-true-then-false.com/2011/install-nginx-php-fpm-on-fedora-centos-red-hat-rhel/
Had to remove some stuff
rpm -e php-pdo rpm -e php-ZendFramework-Db-Adapter-Pdo rpm -e php-pdo rpm -e php-mysql rpm -e phpmyadmin rpm -e php-mysql rpm -e php-pdo yum --enablerepo=remi,remi-php55 install nginx php-fpm php-common
service httpd stop service nginx start service php-fpm start chkconfig httpd off chkconfig nginx on chkconfig php-fpm on
php-mapscript will need to be recompiled
Sources
freeswitch -- They recommend building from git sources
git clone git://git.freeswitch.org/freeswitch.git cd freeswitch ./bootstrap.sh ./configure make -j 10 sudo make all install cd-sounds-install cd-moh-install Use linphone to connect to dart sip:[email protected] and dial 9664 to hear MOH
ruby the version in Centos is 1.8.7 and BBB requires 1.9.2 Version 2 is out but being cautious today I installed the newest of the 1. series, 1.9.3
ffmpeg
BBB
Now that the prereq's are out of the way... BBB includes instructions for installing in Ubuntu and also a virtual machine image.
git clone https://github.com/bigbluebutton/bigbluebutton.git
http://wiki.freeswitch.org/wiki/Linux_Quick_Install_Guide