and then...

browse by category
browse by month

2010: 01 02 03 04 05 06 07 08 10 11 12
2007: 01 02 03 04 05 06 07 08 10 11 12
2006: 01 02 03 04 05 06 07 08 10 11 12
2005: 01 02 03 04 05 06 07 08 10 11 12

Archive for 'Linux'

Linux Mint Helena: what happened to bashrc??

For some reason my version of Mint Helena does not create a bashrc file in my home directory…????

Instead there is a default one being used, found here: /etc/bash.bashrc

To add aliases and what not for my user account I added the following to this file:


# Added by ae - load aliases if they exist
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi

Logging Kohana sites

Add this to your bash aliases for quickly seeing whats happening in the current log.

alias klogger='tail -f -s 5 /home/ae/workspace/eventarc/www/logs/`date +%Y-%m-%d`.log.php'