Category Archives: How To
How to set up your own personalised name@surname.me email address in 3 easy steps
Whether you’re an individual climbing the career ladder or a business intent on gaining market share. The value of a professional email address can not be overestimated. Your email address is often one of the first items that differentiates you … Continue reading
Taskdef class com.sun.tools.ws.ant.WsImport cannot be found [Solved]
Taskdef class com.sun.tools.ws.ant.WsImport cannot be found : The error is due to the relevant jaxws jar not being in the class path see the <pathelement> node below. Adding the jar to the classpath will resolve. <property name=”BUILD_LIBS” location=”C:/Projects/Build/Libs/” /> <taskdef … Continue reading
How to create Apache redirect from www.leftbrainlogic.com to leftbrainlogic.com
RewriteEngine On RewriteCond %{HTTP_HOST} ^www.leftbrainlogic.com$ [NC] RewriteRule ^(.*)$ http://leftbrainlogic.com$1 [R=301,L] http://www.webmasterworld.com/apache/4092618.htm
How to get Ubuntu/Debian Version Numbers
Ubuntu $ lsb_release -a or $ more /etc/lsb-release or $ more /etc/apt/sources.list Any of the methods above will enable you to find out which version of Ubuntu you are running. Debian cat /etc/*release or cat /etc/issue Any of the methods … Continue reading
How to install Image::Magick on Debian/Ubuntu
The required package is graphicsmagick-libmagick-dev-compat http://packages.ubuntu.com/feisty/graphicsmagick-libmagick-dev-compat and can be installed using the following command: sudo apt-get install graphicsmagick-libmagick-dev-compat.
How to install a specific version of a CPAN module
sudo perl -MCPAN -e shell cpan[3]> install Geo::IP # To install latest version of module cpan[3]> install TJMATHER/Geo-IP-1.27.tar.gz # To install specific version of module
How to change the default editor used by Linux Cron
export EDITOR=vi when you next edit the cron jobs via crontab -e vi will be used as your editor