How To Migrate Mantis Defect Tracking System From Windows To Linux / Fedora Core 6May 12th, 2007 Mantis is popular php based defect tracking application which works on top of RDBMS like MySQL and PostgreSQL. Recently I ported our Windows based Mantis installation to Linux.
mod_rewrite Not Working in .htaccess - SolutionJuly 10th, 2006 I faced a hair-tearing problem. mod_rewrite was loaded and yet it was not working in .htaccess files (and httpd.conf initially).
Did you get your Ubuntu?March 17th, 2005 I am eagerly waiting for my copies of Ubuntu. The site says that it was sent on February 22.
J2EE Performance Improvement 3X on LinuxApril 5th, 2006 In an interesting press release IBM announced today that Olympus America Inc., a precision company that designs and delivers solutions in healthcare and consumer electronics worldwide, has increased the performance of its Web services three times by supplementing its current environment with Linux on IBM's "all-in-one" System i business computing solution. I am not surprised.
Free Sun Security Administrator Certification ExaminationJune 26th, 2006 Sun Certified Security Administrator for Solaris 10 OS (311-303)
If you are an expert security administrator, this is your golden opportunity to get certified for free by taking Solaris 10 Sun Certified Security Administrator exam. Sun beta exams count towards official Security Certification.
We Are Hiring!March 26th, 2008 Check out our career page and open positions. We prefer candidates from Kolkata, India.
Java Tip: Basic Authentication with HttpURLConnectionJuly 6th, 2007 Java provides a super simple, yet hidden from plain view, way to do basic authentication of HttpURLConnection / URLConnection. Before making a connection add the following lines of code:
final String login ="...";
final String password ="...";
Authenticator.setDefault(new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication (login, password.toCharArray());
}
});
This sets your default Authenticator which is called whenever authentication is required for any URLConnection.
Comparison of Software RAID on Windows versus LinuxFebruary 18th, 2007 The basic idea of RAID (Redundant Arrays of Inexpensive Disks) is to combine multiple small, independent disk drives into an array of disk drives which yields performance and recoverability exceeding that of a Single Large Expensive Drive (SLED). Redundancy is also provided (unless RAID 0) which allows easy and often automatic recovery from hard disk crash.
Firefox & pkill - Inseparable Friends?August 26th, 2008 Every one in my company knows about pkill, an obscure Linux command because we use Firefox (we are 100% Linux based) as the default browser. What is the relation, you ask? The answer is simple.
Linux / Fedora: How To Freeze Packages From Yum Update in 3 StepsMay 27th, 2007 RPM based systems like RedHat, Fedora or CentOS often have the system configured for automatic updates. This ensures that your software is always upto date.
How To Run Google Chrome Browser on LinuxSeptember 21st, 2008 CodeWeaver's released a port of Google's Chrome browser (review) for Linux. CrossOver Chromium is a Mac and Linux port of the open source Chromium web browser.
How To Use Wget Through ProxyAugust 25th, 2006 Wget is a super-useful utility to download pages and automate all types of web related tasks. It works for HTTP as well as FTP URL's.
Desktop Linux Users Double in 2006August 23rd, 2007 According to DesktopLinux.com's just completed survey, the number of Desktop Linux users has more than doubled in 2006, and Ubuntu remains the no. 1 Linux distribution of choice for desktop users.
Ubuntu Linux to Support Sparc Based Sun Niagara ServersMay 30th, 2006 Sun Microsystems is getting support for its Sparc-based Niagara servers from Canonical, the Linux distributor of Ubuntu, the companies said on Tuesday. The free Debian-based Ubuntu distribution of Linux, launched in 2004 by South African dot-com billionaire Mark Shuttleworth, has already attracted millions of individual desktop users.
How To Rapidly Clean / Wipe Hard Disk DriveApril 6th, 2008 How to overwrite your hard disk with random characters
dd if=/dev/random of=/dev/sda
How to overwrite your hard disk with zero characters
dd if=/dev/random of=/dev/sda
Replace sda / hda with your hard disk identifier. Either of the procedure requires the system has Linux installed or accessible from Linux operating system.