Wednesday, December 22, 2010

IOSN-InWent FOSS GIS & Sahana Training

IOSN-InWent FOSS GIS & Sahana Training

I am still intent on implementing this application in my organization, but cannot seem to find the time since then. "If there is a will, there is a way" is my battle cry for this... ;)

Tuesday, December 14, 2010

Non-US resident testing

I'm working as a systems administrator, trainer and administering several Google Apps accounts (as your records would show) but I'm not a US resident. Do you offer an exemption to the policy of having only US-residents as testers? Would consider paying for the freight/customs duties if within my limits

in reference to: Send us feedback - Chrome OS Help (view on Google Sidewiki)

Monday, November 8, 2010

Pandoc - About pandoc

Pandoc - if you need to convert files from one markup format into another...

Sunday, November 7, 2010

JasperServer appServerDir

By following the instructions here, I was trying to install JasperServer from a war file distribution when I hit a wall.

The buildomatic scripts fail at finding the right appServerDir value set at default.master.properties. The trick here is to simply use the "/" instead of the Windoze "\" separator when setting its value at default.master.properties

To check if the configuration of the said file is correct, you need to execute js-ant gen-config

Saturday, January 9, 2010

Installing Webmin on Ubuntu

As a SysAd, I find Webmin invaluable. Almost all I needed to do can be done from Webmin such MySQL, mail and web administration. I have been using it for 7 years and I have no complaints whatsoever. Best of all, its free (but support is available if you want it)!

If you have not heard of Webmin, here is the description from http://webmin.com:

Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Webmin removes the need to manually edit Unix configuration files like /etc/passwd, and lets you manage a system from the console or remotely.


Installin it on Ubuntu is easy. Just download the package on the console by:

1) wget http://prdownloads.sourceforge.net/webadmin/webmin_1.500_all.deb
2) dpkg -i webmin_1.500_all.deb
3) apt-get install -f


Now its done. Enjoy!

Repair Perl Locale Errors

Thanks for this article , I was able to fix my perl locale errors on Karmic Koala.

Error Messages:

perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = "en_US",
LC_CTYPE = "en_US.UTF-8",
LANG = "en_US.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory


This is the solution:

sudo apt-get install language-pack-en-base
sudo dpkg-reconfigure locales

Thursday, January 7, 2010

DBCC SHRINKFILE - MSSQL2000

The easiest way to shrink Transaction Logs in MSSQL 2000 is to use the GUI (Enterprise Manager). I had so much pain and agitation using DBCC SHRINKFILE and other commands related to this using MS SQL Analyzer.

You had been warned! :D