WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

Hello ,Very simple yet common error we get while doing ssh to remote machine :Reason :Every SSH server uses a random key to identify itself When ssh installed then new key is generated .In this case host key is changed which result in client not able to connect with server , and this message is shown on client side.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@IT...

PHP TCP/IP Socket Error Codes

Hello Friends,php TCP/IP socket error codes:Make error.php with following code : for($n=0;$n<125;$n++) {    $msg = socket_strerror($n)."\n";    echo $n,' = ',$msg;}?> Socket Error Codes with meaning :0 = Success1 = Operation not permitted2 = No such file or directory3 = No such process4 = Interrupted system call5 = Input/output error6 = No such device or address7 = Argument list too long8 = Exec format...

How to mount an USB Pen Drive

Hello,Those who are new to linux , may need to know procedure to mount it .Check it out below :1) Attach your USB pendrive to Linux computer.    2)  #dmesg    ( Check the last lines. It will show the device name used by pendrive for example    /dev/sda1 or /dev/sdb1 )3) #mkdir /pendrive    #mount /dev/sdb1 /pendrive   Your pendrive should be mounted!.   Best Regards, Gir...

Mind Reading Tricks (Mind Reading Game)

Hello Friends ,I would recommand you to play this simple mind game!!!How's that ? ?  Enjoye ? ? Shocked ? ? Lets discuss the logic behind this ? ?  We can discuss by commenting on this post... Best Regards,Gir...

Ubuntu Single User Mode without root password for maintenance

Hello Friends,I came across problem , while resetting ubuntu password , Generally when we reset password for RHEL 5 OS , we enter into single user mode through grub by editing Kernel line with Single or 1  , and simply you will boot into single user mode.But with Ubuntu it was a kinda different.1.Reboot your machine; press 'Esc' to get to the GRUB menu; select your image; press 'e' to edit; select the Kernel line. 2.Press 'e' to edit the kernel line. Edit the line to get rid of quiet and splash;...

Samsung Duos GT C-3222 Secrete code

Hello Friends,You can play around with *#52828378#  code , I have tested it on my duos , and working fine with me.I wanted to install java application on my duos , for that you need to get in :OTA test basic >> set Maximum JAR size (kb)" between 500 to  650 , and you will be able to install small java applications on your duos , upto 650 to 700 KbBest Regards,Girish...

Now we can have chat !

Hello Readers,I have included simple chat plugin , so that we can have chat on technical topics.We can share our views and get to know each other.Thank & Regards,Gir...

Most Famous logos and its meaning

Hi Friends ,This is  a simple but very good link to know famous Logo's and meanings associated with it.Click here  Best Regards,Gir...

Mysql installation on MAC OS X version 10.6.8

Hi, Untar mysql in /usr/local/mysql  --> tar -zxvf filename .As per instructions from INSTALL_BINARY (mysql) , we need to add groups , users , set permissions.Once done , go to :1. /usr/local/musql/bin2. execute ./mysqladmin -u root -p Newpassword (Change root password for MySql)3. ./mysql -u root -p4. Enter new set password.Once connected, you can list databases using mysql> show databases;mysql> use databasename;mysql> show tables;mysql> create table customer (custid INT...