cute little tux

New Look, New Start

cute little tux

LinuxGurl(dot)com will be turning 2 years old next month (on the 28th of March). Its amazing to think that it has been around this long. Yes, I am human and don’t update like I should, but I am going to try to do better. I am still for More >
NORAD 2009 LOGO

‘Tis the Season

‘Tis the season to relax and enjoy spending time with your family. If you feel the need, give gifts as well. I know that most everyone is feeling a pinch in their wallets, and its hard to be as giving as the commercials and shows tell us we should be. More >

Screenshot-2

Karmic Slide-Show Breakdown

Yes, there has been a slide-show type wallpaper(s) for Linux for a while available over at gnome-look.org (Just search for animated under the wallpaper section). But now it comes as one of the options for Karmic (Ubuntu 9.10). The process is a simple one if you want to make your own. More >

multiple conkies with lua

Conky, revisited

With lots of googling and failed attempts, not quite right attempts, and then finnaly the product I was aiming at, I have my conky the way I have been wanting it for months. It consists of 11 different files with 1 calling them all together. (Yes, 12 different files, and More >

A Random Funny Geeky Thing

originally found here: http://thedailywtf.com/Articles/Microsoft-Vissa,-Hey-Thats-Ours,–More-Support-Stories.aspx

A few years ago, a common free email provider who we’ll call “Yooha” had an outage on one of their load balanced email servers. Since it was only a problem on accounts tied to that server (and because I was in the middle of a fairly time More >

Adding Virtual Domains — The Easy Way (Ubuntu)

I wrote this script out of my need for a quick method of adding virtual domains. I hope you find this to be of great use.

create a file named addomain

  1. sudo vim /usr/bin/adddomain

Place this in your file:

  1. #!/bin/bash
  2. #Edit the following e-mail address:
  3. email="your@email.address"
  4. ipaddress=`ifconfig eth0 | grep inet | awk ‘{print $2}’ | sed ‘s/addr://’ | grep .`
  5. domain=$1
  6. file="/etc/apache2/sites-available/$domain"
  7. if [ -z $domain ]; More >