Forum archive
TKLPatch for BigBlueButton
Forget about DimDim (they forgot about you anyway!). This TKLPatch will convert turnkey-core-beta-lucid-x86 image to a BigBlueButton appliance which is a wonderfull web conference system that integrates 14 opensource projects and is being actively developed. It has integrated webcam support, VoIP, Desktop Sharing, and all the features needed for this type of software.
Developers also included a web front-end in past versions, but it's being dumped in favor to develop the API, but some examples are included in how to use the API to manage the rooms and private conference.
Features:
Complete opensource conferencing system.
Based on Ubuntu 10.04
Script added to run bbb-conf --setip when there is a change on the IP (convenience)
What it does:
1. Set hostname to bigbluebutton
#Set hostname HOSTNAME=bigbluebutton echo "$HOSTNAME" > /etc/hostname sed -i "s|127.0.1.1 \(.*\)|127.0.1.1 $HOSTNAME|" /etc/hosts
2. Update package information
apt-get update
3. Install gnupg to required to add bigbluebutton package key
apt-get -y install gnupg
4. Add the package key
wget http://archive.bigbluebutton.org/bigbluebutton.asc apt-key add bigbluebutton.asc
5. Add the archive for BigBlueButton Ubuntu 10.04
echo "deb http://archive.bigbluebutton.org/lucid bigbluebutton-lucid main" > /etc/apt/sources.list.d/bigbluebutton.list
6. Ensure the multiverse is in the souces list (needed for msttcorefonts)
echo "deb http://archive.ubuntu.com/ubuntu/ lucid multiverse" >> /etc/apt/sources.list.d/sources.list
7. Install required packages
install asterisk bigbluebutton ghostscript
8. Stop running services
service mysql stop service nginx stop service tomcat6 stop service red5 stop service asterisk stop service activemq stop service bbb-openoffice-headless stop
9. Clean apt cache
cleanup_apt
Enjoy. Comments, bugs, feedback are welcome.
I built the ISO using ur patch , When i issue the IP address on the browser , i got an option to enter a name and proceed , but nothing is happening afterwards. The load of the machine goes up high and it even doesn't reply to ssh requests. Also after some time i got " page unavailable error ".
Also i think you forgot to add script to change mysql root password during installation.