October 17, 1956, The Game of the Century as dubbed by Chess Review, Hans Kmoch is a famous chess game that was won by the 13-year old boy future world championBobby Fischer against Donald ByrneFischer (playing Black) demonstrates noteworthy innovation and improvisation. Byrne (playing White), … [Read more...] about Bobby Fischer’s Game of Century
remove-openjdk-and-install-oracle-jdk on ubuntu
In this blog post, I will show you how to remove openjdk and install oracle jdk on ubuntu.Step-1: Download oracle JDKDownload from hereStep-2: Remove existing openjdksudo apt-get purge openjdk-\*Step-3: Create directory for java installationsudo mkdir -p … [Read more...] about remove-openjdk-and-install-oracle-jdk on ubuntu
Chess
How to convert PPK to id_rsa
In this blog post, I will show you how to convert a putty based ppk file to linux compatible public or private key.Install Putty on LinuxFirst install putty utility on linux using commands below,Ubuntusudo apt-get install putty-toolsRed Hatyum install puttyTo public … [Read more...] about How to convert PPK to id_rsa
Failed to start OpenBSD Secure Shell server [SOLVED]
Unable to start SSHD after restarting serverTo find the problem with starting sshd you can use the command below,sudo sshd -TI found that I had to create a directory as shown below to solve the problem.mkdir /var/run/sshd/ cd /var/run/sshd/ ln -s /etc/localtime localtime … [Read more...] about Failed to start OpenBSD Secure Shell server [SOLVED]
How to install JMonkey
What is JMonkey?As per the Official documentation, It’s a free, open source game engine, made especially for Java game developers who want to create 3D games using modern technology. The software is programmed entirely in Java, intended for wide accessibility and quick deployment.In this … [Read more...] about How to install JMonkey
How to reset MySQL Password
If you have lost your mysql password and unable to reset it. Follow this blog post to know how to reset MySQL passwordStep-1: Restart MySQLsudo /etc/init.d/mysql stopsudo /etc/init.d/mysqld stopStep-2: MySQL safe modeEnter in safe mode and you can access the mysql without using any … [Read more...] about How to reset MySQL Password
Recording Screen on Ubuntu
In this blog post, I will show you how to do screen recording using recordMyDesktop on ubuntu. First, Let's install it using the command below,sudo apt install gtk-recordmydesktopAfter the installation is complete, You can find the short cut in the launcher as shown below,The … [Read more...] about Recording Screen on Ubuntu