Coloring Bash Output

Colour bash shell script output I wanted to add some colour to the output of my bash shell script and was able to do so with the following - very simple red and green: if ; then tput setaf 2 echo "OK There are no problems" tput sgr0 else tput setaf 1 echo "WARNING There... » More

Apache Directory Studio (Softerra Alternative)

I was looking for an alternative to the Windows software 'Softerra LDAP Browser'  and I stumbled upon Apache Directory Studio. Apache Directory Studio is based on Eclipse and allows browsing to LDAP directories, searching and editing. I tested it with... » More

Web Stats Definitions

AWStats Over the past few days I have had a number of questions asking about the meanings of phrases used in AWStats. So to summarise: BW BW stands for bandwidth  - the amount of megabytes/gigabytes used per month - this was important when people paid... » More

LPIC in practice: init=/bin/bash

init=/bin/bash Today I had a problem booting my Ubuntu desktop - with booting stuck on the purple screen. An Alt-1 showed me that there were problems with the disk and a manual fsck should be run. So at the Grub screen I pressed 'e' to edit the current entry and on... » More

Simple File Share with Samba

Just making a copy of a /etc/samba/smb.conf file that works for sharing a single directory within a private network. There is no security / privacy just a public share. workgroup = WORKGROUP server string = %h server (Samba, Ubuntu) dns proxy =... » More