Posts by Pieter Vogelaar
Ubuntu Server 10.10/11.04 – Selenium Server (headless) & PHPUnit
3This tutorial explains how to run Selenium test cases with Selenium Server and PHPUnit on a Linux server that has no GUI (headless).
Make sure you have pear installed. Then upgrade to at least version 1.9.2
pear upgrade pear
Install firefox
apt-get install firefox
In order to run firefox on a headless server (means without a GUI), Xvfb (X virtual frame buffer) must be used. To install it:
apt-get install xvfb
Install Java:
apt-get install openjdk-6-jre-headless
Download Selenium Server and put it on your server, for example: /opt/selenium-server.jar. http://seleniumhq.org/download/ or direct link More >
Ubuntu 11.04 – Add bottom panel to Unity
2I recently installed the new Ubuntu 11.04 desktop version. The new interface is really cool, saves space and is really clean.
Also the ability to easily put a window on part of the desktop grid is a feature I always missed in Ubuntu. However I just can’t get used to the fact that unity has no bottom panel anymore. Ofcoure “Super+w” key combination works quite well, but with a bottom panel you’re just one click away to get full access to another window.
I don’t like to get back to using Gnome, but lucky for us we can get the More >
Ubuntu Server 10.10 – Postfix alternative SMTP port 587
0Some internet access providers have port 25 disabled in their routers to prevent spam. If you run your own mailserver in a datacenter, you might have to enable the submission port (587) in postfix to be able to send emails from your local email client to your own mailserver.
To enable port 587, edit the file /etc/postfix/master.cf
Copy this line
smtp inet n - - - - smtpd
And change “smtp” into “submission”.
submission inet n - - - - smtpd
Restart postfix
service postfix restart
The email server listens now to the alternative SMTP port 587.