canmove, Confirmed users
6,441
edits
m (→Third-party applications: wip) |
|||
| Line 9: | Line 9: | ||
== Third-party applications == | == Third-party applications == | ||
sudo apt-get install openssh-server python-twisted cvs apache2 | sudo apt-get install openssh-server python-twisted cvs apache2 vnc4server | ||
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 | ||
python setup.py build | python setup.py build | ||
python setup.py install | sudo python setup.py install | ||
cd .. | cd .. | ||
rm -rf buildbot/ | rm -rf buildbot/ | ||
| Line 23: | Line 23: | ||
** from cygwin prompt in /cygdrive/c/ | ** from cygwin prompt in /cygdrive/c/ | ||
** cvs -d ":pserver:anonymous:anonymous@cvs-mirror.mozilla.org:/cvsroot" co mozilla/testing/performance/talos | ** cvs -d ":pserver:anonymous:anonymous@cvs-mirror.mozilla.org:/cvsroot" co mozilla/testing/performance/talos | ||
=== Configure VNC Server === | |||
Set a password with: | |||
vncpasswd | |||
Then replace /home/mozqa/.vnc/xstartup with the following: | |||
#!/bin/sh | |||
xsetroot -solid grey | |||
And make it executable | |||
chmod +x /home/mozqa/.vnc/xstartup | |||
Make vnc start on boot by adding the following to mozqa's crontab: | |||
@reboot vnc4server -rfbport 5900 | |||
=== Configure Apache === | === Configure Apache === | ||