Featured Articles

Chrome released for debian distros

Finally google released chrome browser for debian based distros. After running for hours i feel its stable and working fine

Download Google chrome for Debian

For developers it has developer tools which looks like firebug, but it`s not so power full like firebug, to open developer tools click

ctrl + shift + i

It also supports extensions and themes

At present i can say it as just an alternate browser, but not total replacement for firefox, let me test the stability of chrome for some more time

RAID and LVM on Amazon EC2 (part I)

This is the first part of three articles I’m posting for a great storage solution using RAID, LVM and Amazon Elastic Block Store (EBS).

First, you need to choose your RAID implementation. Personally, I prefer to use RAID 5 on Amazon EC2, combined with LVM2.

For setting a RAID 5 up and running you will need to raise at least 3 EBS volumes and attach them to your instance (let’s say: sdb1, sdb2, sbd3). Read more »

Porting Debian to Amazon EC2 for HPC

Few months ago, I was challenged to build a High Performance Computing (HPC) instance on Amazon EC2 and the first thing that came in my mind was: which Linux distribution would fit on such requirements.

I must confess I’m pretty much adept to Debian, but I was forced to be unbiased and start researching for better options for achieving my goal. Also because the environment I was going to port was already running Debian, but the application’s traffic growth was increasing at high speed and it seemed something was going on with that server. Read more »

Changing host name of Linux server

To change the host name of current session use

/bin/hostname your-host-name

To change the host name permanently use

/etc/hostname
/etc/init.d/hostname.sh start

Tools to monitor linux apache server

The following tools are usefull to linux administration and monitoring

RRDTool: RRDtool is the OpenSource industry standard, high performance data logging and graphing system for time series data. Use it to write your custom monitoring shell scripts or create whole applications using its Perl, Python, Ruby, TCL or PHP bindings.

Read more »

Free ubuntu CD

If you are facing problem in downloading large files of linux distibutions, Ubuntu is giving a great offer, you can request free CDs from ubuntu it is totally free and ships to any part of world.

Request Free CD

Mail alert for ssh login

To get a mail when some logged into your linux system then follow this steps
Edit .bashrc in root folder /root

vi .bashrc

Add following line at end of the file

echo 'ALERT - Root Shell Access (server name) on:' `date`
 `who` | mail -s "Alert: Root Access from `who | cut -d"(" -f2 | cut -d")"
 -f1`" yourmail@gmail.com

Intel poulsbo Drivers for Ubuntu

Many people after installing Ubuntu for the first time or after Kernel update facing the problems with display drivers of Intel Poulsbo chipset. Here is steps to repair your display

For new installation:

Update aptitude sources Read more »

Installing Ubuntu on NetBook (Dell Mini)

In netbooks we wont found CD Drive so Installing ubuntu or any OS is a bit diffciult. So for the people who are looking for installing ubuntu on Netbooks with preinstalled Microsoft OS, I am going to explain you, how to install ubuntu using USB

UNetbootin: UNetbootin allows for the installation of various Linux/BSD distributions to a partition or USB drive, so it’s no different from a standard install, only it doesn’t need a CD. It can create a dual-boot install, or replace the existing OS entirely.

Creating bootable USB

Creation of the bootable USB Ubuntu installation really could not be easier. Read more »

Debian / Ubuntu Apache SSL Configuration

Hey you are planning to start a e-commerce website, then you must know about SSL without which no one will trust your website as a safe place to use their cards…

What is SSL?
SSL (Secure Socket Layer) is a protocol used for secure data transfer. This is done by using private keys and certificates. A private key is used to encrypt the data which you are sending and the server can only decrypt this data with the private key available with it, A certificate is used to authentic yourself before proceeding.
So we need two things to make our website secure for online transactions. In this article i will explain how to generate a private key, certificate request with open-ssl and apache, get certificate from CA (Certificate Authority), configure your server to respond for ssl requests.

Different types of certificates
Before going to configuration I will explain about the different types of certificates available in the market and when to use which. The certificates are mainly divided into High Assurance and Low Assurance, High assurance is needed for sites dealing with financial transactions, low assurance is needed for internal corporate networks or small websites and mainly used for secure login to site and sending sensitive documents securely.
Remember every byte you are sending through http protocol means non-ssl layer can be seen or accessed by anyone.

Configuration:

I used Apache 2, Debian Linux, Openssl for this configuration.
First step is to install Apache:
Go to console mode Read more »

Meta