Linux

No Image

VMWare ESXi 3.x secret console and enable SSH access

VMWare ESXi 3.x is a free version and lightweight version of the VMWares ESX platform. It supports most of the key features that ESX has but comes in appliance like package which doesn’t let you configure anything more than just…



No Image

iSCSI @ Home

iSCSI or internet SCSI is a standard for running SCSI over an ip based network. For people familiar with this technology it basically enables you to mount remote disks over your existing IP infrastructure. Today I setup a simple iSCSI…


No Image

Vsftp chroot – Unable to follow symlinks!!

Today I setup vsftp for local user ftp access. I turned on ‘chroot_local_user=YES’ which essentially puts the ftp user into a vsftp chroot jail. But what happens when you want to access something outside of user’s home directory? What? Symlinks…


No Image

Upgrading an Entrepreneur ASP infrastructure – PART II

After analyzing the situation I have identified several key problems. 1. System Availability – Systems fail frequently due to hardware failures, DoS, and application failures. 2. Collocation is far and administration requires frequent visits 3. Mini tower servers consume space…


No Image

How to configure VLANs in Linux

This link from the Redhat knowledge base talks all about it. Here’s the list of steps and pointers I had to go through. 1. Make sure that the 8021q module is loaded modprobe 8021q 2. This step is important as…


No Image

How to do a HTTP POST with Curl

This page proves there are people out there who forget about the same things I forget. Here’s the POST I wanted to run today. curl -d “platform=CHANNEL&processor_target=CERT&charge_type=PING” http://app01.qa.paygateway.com:31080/Quicksilver/



No Image

Most useful commands used in TOP

Top is amongst the most comprehensive and informative process display command in Linux. There’s no reason for a seasoned Linux sysadmin like myself not to know it! Top can display all the information you need to know about processes and…


No Image

Useful ways to use the Linux “find” command

In my Linux life, I find myself trying to search for files quite frequently. All distributions comes with a very handy command called ‘locate’ which helps you search for the file. What it does is Linux keeps an index and…