May 11
I was running vzup2date on CenotOS 5.1 when the following error came up:
[RPM] Dependencies conflict.
/usr/bin/rpmbuild is needed by vztt-build-4.0.0-116.swsoft.x86_64
The solution was really simple. Install rpm-build:
$yum install rpm-build
Once you’ve done this, you can proceed with vzup2date without any errors.
Apr 20
I thought I would share the steps I took to setup CentOS 5.1 on a Dell PowerEdge 1900 withPerc 5/i and 6/750GB hard drives in a RAID 5 configuration.
- Setup your RAID arrays:
- OS VD: Using the Perc 5/i configuration utility, remove all existing arrays (If new from factory), then setup the first virtual disk (VD0) as a RAID 5 using all drives (right all of them), then specify the volume size. In my case, I chose to allocate 120GB (122880 MB). This is where I’m going to install the OS.
- Data VD: You’ll want to setup a second virtual disk as a RAID 5 with all of the disks selected and allocate the remaining disk to it. When you continue to the OS install, the installer will see SDA (VD 0) and SDB (VD 1) for the partitions.
Continue reading »
Apr 10
Yeah, here we go with the bashing on Digg. But for what its worth, I enjoyed reading the story and correlating to the book of Genesis. Read the whole article here.
Apr 09
Yeah, I upgraded to Outlook 2007 and here is what I got: 0×800CCC80 when attempting to send an email. The solution to the problem is listed below:
Go to Tools > Account Settings > Double click the account > More Settings > Outgoing Server > ‘Log on to incoming mail server before sending mail’.
You’re welcome!
Apr 07
I suppose this is what I would look like if I were to be animated:

Apr 07
I’m already screwed up, so seeing something like this just tears my heart out.

Apr 01
I got a little paranoid with MySQL running in Windows 2003, so I wrote a quick script to make backup script of the databases along with the save date:
@echo off
FOR /F “TOKENS=1* DELIMS= ” %%A IN (’DATE/T’) DO SET CDATE=%%B
FOR /F “TOKENS=1,2 eol=/ DELIMS=/ ” %%A IN (’DATE/T’) DO SET mm=%%B
FOR /F “TOKENS=1,2 DELIMS=/ eol=/” %%A IN (’echo %CDATE%’) DO SET dd=%%B
FOR /F “TOKENS=2,3 DELIMS=/ ” %%A IN (’echo %CDATE%’) DO SET yyyy=%%B
SET date=%mm%%dd%%yyyy%
echo Running MySQL5 Backups
“C:\Program Files\MySQL\MySQL Server 5.1\bin\mysqldump” -uroot -p[PASS] -P [PORT] –result-file=”c:\backup\[HOSTNAME].%date%.sql” –all-databases –verbose –add-drop-table -add-locks -f
echo Done!
Mar 30
I was migrating a VM container to Virtuozzo VE when I ran into the following error:
# Error invoking external utility: can’t set Container network flags
It looks like this is a bug with Virtuozzo container version 4.0, and from the look of it there doesn’t seem to be a hotfix in existence. However, you can fix the issue by issuing the following command:
$ vzctl set [VEID] –netif_add vznet1 –ipadd [IP ADDRESS] –save
This worked in my case.
Mar 15
hahaha! I nearly feel on my knees reading this.
Mar 11
I was checking the DNS record for a domain (using dnsstuff.com) and I noticed that the Bind version was being disclosed to the public:
Your nameservers have the following versions:
65.49.*.*: “9.2.4″
65.49.*.*: “9.2.4
Continue reading »
Mar 07
So you’ve got yourself one of those dreaded Microsoft Outlook errors? Same here:
Task ‘Checking for new mail in subscribed folders on Mail Failure Logs.’ reported error (0×8004DF0B) : ‘Outlook is unable to download folder (null) from the IMAP e-mail server for account Mail Failure Logs. Error: The connection to the server is unavailable. Outlook must be online or connected to complete this action. If you continue to receive this message, contact your server administrator or Internet service provider (ISP).’
Truth be told, Bill Gates isn’t at fault here. This is actually a courier-imap setting. To correct the issue, shell to your server, and edit /etc/courier-imap/imapd (may be located elsewhere on your *nix distro) look for the following flag: MAXPERIP=4, increase the number and restar the courier services. The error is no longer there.
Mar 03
Like I said, music 1.0 is dead
RIAA’s Mafia days are numbered…
Feb 27
I’m beginning to lose my mind with the amount of information I have to remember. This includes the passwords for nearly 200+ accounts that I have for my personal and web hosting business that I maintain.
Now, I could have setup a fancy database and encrypt the data using DES but that’s too much work and I want to be able to carry the data securely with me. So, what’s the answer? Enter IronKey.
.
$78 for the 1GB version got me a USB key that has a built in Crypto chip that protects data using the same encryption algorithm as many governmental agencies. I wish that they would have developed the Linux drivers as well. It seems that they’re working on it but no news on when it’ll be released.
Note: Remember to carry it with you and don’t leave sitting around in the office. This has a threshold of 10 attempts for the account log-in, so try 10 times and you’ll erase everything permanently!

Of course, your other alternative is PassPack but you won’t have a cool all metal USB key that’s practically indestructible.
Feb 18
If you’re a Linux geek in the San Francisco bay area, then you should contribute to installfest.
Feb 16
Easy:
$ find [path] -user [user] -print | xargs rm -Rfv