Tuesday, May 3, 2011

Eclipse for PHP Developers

Eclipse for PHP Developers is a best tool that i have ever seen for develop professional PHP applications. It provides all development functions for developers. This IDE has hot many rich features.

You can find out more details from http://adf.ly/1PQsU and you can download your copy from http://adf.ly/1PQuI

Wednesday, October 27, 2010

How to set, run update automatically in linux with yum

If you need keep you Linux PC up to date, you have to update your system every time.
But if you can set this thing happens automatically you do not want to worry by manually updating your system. Here i show how do we can enable or set the yum update manager to run start up as a service.

To run the yum update service at the system start up, you have to enable it. Issue the following command to enable it.
# chkconfig --level 345 yum-updatesd on

If you want to verify your configuration issue,
# chkconfig  --list yum-updatesd
or
# service yum-updatesd status       // this gives whether the service running or not

Monday, September 6, 2010

OKPAY | New way of made payments easy


Sign up for OKPAY and start accepting payments instantly.

OKPAY | New way of made payments easy

OKPAY is a new online payment solution. It is easy and more secure. 

Friday, August 6, 2010

Puppy 5.0

Puppy Linux is one of light weight distribution of Linux. Live-CD of this Puppy Linux distribution is only 85MB.
But it includes all GUI applications.Being so small, Puppy Linux usually loads completely into the RAM. This increase the speed. You can find more details about Puppy Linux by it's website : www.puppylinux.com.

You can download you free copy from http://www.puppylinux.com/download/index.html

Tuesday, August 3, 2010

Create a GRUB Boot Splash Background

Here i show you how to change the background of GRUB Boot splash. To do this you have follow some requirement. They are
  • It must be sized at 640x480. 
  • It must be a .xpm format image file.
  • It must contain no more than 14 colors.


Now we start, Suppose that you got a image in .png format. How do you convert it into .xpm format. You should have to installed ImageMagick and issue following command syntax to convert .png image to .xpm image.

# convert sampleimage.png  -colors 14 -resize 640x480  sampleimagee.xpm

First convert .xpm image to gz. Then copy that .xpm image in to /boot/grub directory

Convert sampleimage.xpm to gz
           # gzip sampleimage.xpm

Copy sampleimage.xpm.gz to /boot/grub
           # cp sampleimage.xpm.gz /boot/grub

Now configure the grub.conf to set your image.
           splashimage=(hd0,0)/boot/grub/sampleimage.xpm.gz

Now reboot the system and see whether you Grub Boot Splash Background has change !