Download the latest Google Chrome package with wget command as below wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb After downloading Google chrome install it as below sudo dpkg -i google-chrome-stable_current_amd64.deb Now you can start it [ … ]
Category: Real Time Concepts
How To Install Firefox In Ubuntu 16 And Centos 7
If Firefox is already installed remove with following commands For ubuntu sudo apt-get remove firefox For centos sudo yum remove firefox after uninstalling firefox unlink or rename the current firefox [ … ]
How To Create a Swap Memory
As we know that swap is a sub directory in root hierarchy,And this Swap plays main role when the the total amount of physical RAM memory is full,all the inactive [ … ]
How to Install php56 in Linux
TO Install php below are the prerequisites For centos 7 install below remi and repo packages ——– yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm For centos 6 install below remi and [ … ]
How to Install Firewalld Package on centos 7
Firewalld service not works in centos 6, It works only from centos 7 and higher versions rpm -qa firewalld sudo apt install firewalld $ sudo systemctl start firewalld $ sudo [ … ]
How To Update MYSQL FROM 5.1 TO 5.5 In Centos 6
rpm -qa | grep mysql rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm vi /etc/yum.repos.d/remi.repo [remi] name=Remi’s RPM repository for Enterprise Linux 6 – $basearch #baseurl=http://rpms.remirepo.net/enterprise/6/remi/$basearch/ mirrorlist=http://rpms.remirepo.net/enterprise/6/remi/mirror enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi yum -y [ … ]
How to reset MySQL 5.7 root password on Linux
If you have forgotten your root password, then this post for you here’s how to reset it. 1. Shutdown the MySQL service mysqld stop 2. Start mysql in safe mode [ … ]
Upgrade from PHP 5.3 TO PHP 5.6 on-centos-6-7/9
php -v rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm vi /etc/yum.repos.d/remi.repo [remi-php56] name=Remi’s PHP 5.6 RPM repository for Enterprise Linux 6 – $basearch #baseurl=http://rpms.remirepo.net/enterprise/6/php56/$basearch/ mirrorlist=http://rpms.remirepo.net/enterprise/6/php56/mirror # WARNING: If you enable this [ … ]
Enable Port through sshd
how to change listening port in ubuntu vi /etc/ssh/sshd_config # What ports, IPs and protocols we listen for can change here Port 22 sudo systemctl restart sshd how to change [ … ]
Upgrade From Mysql 5.6 to 5.7
upgrade from mysql 5.6 to 5.7 ——————————- moving from 5.5 is a two step process: first follow the relevant procedure for your system above to upgrade to 5.6, then repeat [ … ]