Friday, November 16, 2018

Install TeamViewer on Centos7

1. Get the RPM Package

    wget https://download.teamviewer.com/download/linux/teamviewer-host.x86_64.rpm

2.  Install EPEL Repository

    sudo yum -y install epel-release

3. Install TeamViewer

    sudo yum -y install ./teamviewer-host*.rpm

That's all folks!  3 steps only.

Fyi, I referred to https://community.teamviewer.com/t5/Knowledge-Base/How-to-install-TeamViewer-on-Red-Hat-and-CentOS/ta-p/30708 for this.
Install FileZilla FTP Client on Centos7

1. Enable EPEL Repository

    sudo yum -y install epel-release

2. Install FileZilla

    sudo yum -y install filezilla


That's all folks.  2 steps only.

Fyi, i referred to http://sysadmindata.com/install-filezilla-centos-7/ for this.
Install Google Chrome on Centos7

1. Enable Yum Repository

    sudo vi /etc/yum.repos.d/google-chrome.repo

    Add the following:

    [google-chrome]
    name=google-chrome
    baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
    enabled=1
    gpgcheck=1
    gpgkey=https://dl.google.com/linux/linux_signing_key.pub


2. Install Google Chrome

    sudo yum install google-chrome-stable

That's all folks.  2 steps only.

Fyi, I referred to https://www.cyberciti.biz/faq/howto-install-google-chrome-on-redhat-rhel-fedora-centos-linux/ for this.
Installing Visual Studio Code on Centos7

1. Enable Yum Repository

     sudo vi /etc/yum.repos.d/vscode.repo

     Add the below:

    
[vscode]
     name=Visual Studio Code
     baseurl=https://packages.microsoft.com/yumrepos/vscode
     enabled=1
     gpgcheck=1
     gpgkey=https://packages.microsoft.com/keys/microsoft.asc


2. Import the package signing GPG key

     sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc 

3. Install Visual Studio Code


     sudo yum check-update
     sudo yum install code



That's all folks! 3 steps only.


Fyi, I referred to https://tecadmin.net/install-visual-studio-code-editor-in-fedora/ for this.

Install MySQL 8.0 on Centos 7

Steps to install MySQL 8.0 Community Edition in Centos 7 1. Enable MySQL 8.0 Repository sudo yum localinstall https://dev.mysql.com...