http://awslagi.com/practice-questions-part-1/ https://aws.letsmock.com/?gclid=Cj0KCQjwzcbWBRDmARIsAM6uChUoroRQLbFDSQByealZzgRP_tvx9EBQxyVySZWMPKhU_Upco1JzzngaAr05EALw_wcB#/?_k=gvroym https://www.whizlabs.com/ocajp-scja/ https://www.aws.training/
https://drive.google.com/drive/u/0/folders/1ohxQlXjUdGLkYi6SpFjug7AYTHkKys_L
How To install Google Chrome on Amazon Linux 2
Amazon Linux 2:
Step1. Install the EPEL release package for RHEL 7 and enable the EPEL repository.
sudo amazon-linux-extras install epel -y
Step 2: The EPEL repository is already installed on the original version of Amazon Linux, but you must enable it. You can enable this repository either by using the yum-config-manager command or by editing the epel.repo file.
sudo yum-config-manager –enable epel
Step 3: Enable the EPEL repository. See the EPEL documentation on the Fedoraproject.org website for more information.
sudo amazon-linux-extras install epel
Step 4: To verify that the EPEL repository is enabled, run the repolist command.
sudo yum repolist
Step 5: Prepare repository:
vi /etc/yum.repos.d/google-chrome.repo
Add the following into google-chrome.repo for CentOS 64 Bit:
[google-chrome]
name=google-chrome – 64-bit
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pubAdd the following into google-chrome.repo for CentOS 32 Bit:
[google-chrome]
name=google-chrome – 32-bit
baseurl=http://dl.google.com/linux/chrome/rpm/stable/i386
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
- Install the google chrome stable version:
yum install google-chrome-stable -y
- Step 7: Verify
google-chrome –version
Google Chrome 98.0.4758.80
