canmove, Confirmed users
6,441
edits
| Line 22: | Line 22: | ||
== Third-party applications == | == Third-party applications == | ||
sudo apt-get install openssh-server | sudo apt-get install openssh-server cvs apache2 x11vnc python-yaml python-dev lib6-dev | ||
cvs -d:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -d buildbot mozilla/tools/buildbot | cvs -d:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -d buildbot mozilla/tools/buildbot | ||
cd buildbot | cd buildbot | ||
| Line 29: | Line 29: | ||
cd .. | cd .. | ||
rm -rf buildbot/ | rm -rf buildbot/ | ||
=== Python Twisted === | |||
Do not use the Python Twisted package from apt-get. It uses Twisted 2.5.0, which is buggy. | |||
wget http://tmrc.mit.edu/mirror/twisted/Twisted/2.4/TwistedCore-2.4.0.tar.bz2 | |||
wget http://tmrc.mit.edu/mirror/twisted/Twisted/2.4/Twisted-2.4.0.tar.bz2 | |||
tar xfvj TwistedCore-2.4.0.tar.bz2 | |||
tar xfvj Twisted-2.4.0.tar.bz2 | |||
cd TwistedCore-2.4.0 | |||
python setup.py build | |||
sudo python setup.py install | |||
cd ../Twisted-2.4.0 | |||
python setup.py build | |||
sudo python setup.py install | |||
cd .. | |||
rm -rf Twisted* | |||
== Configure VNC Server == | == Configure VNC Server == | ||