List of 51 Linux Commands for Beginners 

Linux is a top-rated platform on the internet.  Linux is a free and open-source operating system, meaning anyone can use, modify, and distribute it without cost or restrictions. It powers many devices and systems, including personal computers, servers, supercomputers, smartphones (Android), and embedded devices. As per the stats, nearly 97% of websites on the internet use Linux servers and 55.9% of professional developers […]

Easy Steps to Upgrade Mysql from version 5.0 to 5.5

Upgrade your Mysql version from 5.0 to 5.5 by using following steps 1. Enable remi repository for yum wget http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm wget http://rpms.famillecollet.com/enterprise/remi-release-5.rpm sudo rpm -Uvh remi-release-5*.rpm epel-release-5*.rpm 2. Run mysqldump to export data out from MySQL 5.0 mysqldump -uroot -p –all-databases > mysqlbackup.sql 3. Run ‘yum –enablerepo=remi install mysql mysql-server mysqlclient’ 4. Run mysql_upgrade (part […]