Installing WOWza on Ubuntu Server 10.10

I needed to install Java first…

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:sun-java-community-team/sun-java6
sudo apt-get update
sudo apt-get install sun-java6-jre sun-java6-plugin

Download the RAW Linux Version

sudo chmod +x WowzaMediaServer-2.2.0.tar.bin

sudo ./WowzaMediaServer-2.2.0.tar.bin

Then follow onscreen instructions…

Install Location:
/usr/local/WowzaMediaServer

To enter serial number:
cd /usr/local/WowzaMediaServer/bin
./startup.sh

Installing Django on Ubuntu

This applies to Server 10.10 with Python 2.6 and mod-wsgi

Checked version of Python was 2.6 using

python --version

The followed the instructions on the download site

tar xzvf Django-1.2.3.tar.gz
 
cd Django-1.2.3
 
sudo python setup.py install

Note: It seems to place the files into:

/usr/local/lib/python2.6/dist-packages/

Then you need to add the mod_wsgi package

sudo apt-get install libapache2-mod-wsgi

Needed to install the MySQDB module

apt-get install python-mysqldb

Installing Webmin (Ubuntu 10.10)

1. Download webmin

wget http://www.webmin.com/download/deb/webmin-current.deb

2. Execute webmin package. Note this will FAIL but next instruction deals with that.

sudo dpkg -i webmin-current.deb

3. Install missing dependencies and it will automatically recompile webmin

sudo apt-get -f install

Enjoy webmin on https://[serverIP]:10000.