Skip to content

Google Chrome Installation Error on Linux EC2 Instance

0

Google Chrome Installation Error on Linux EC2 Instance Encountering a symbol lookup error related to ippValidateAttributes when installing and running Google Chrome on an Amazon Linux AMI EC2 instance.

Steps to Reproduce: Launch EC2 instance (Amazon Linux AMI). (Image: ami-052b9fbb6949f883a) Install Google Chrome:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm sudo yum install -y ./google-chrome-stable_current_x86_64.rpm

Run:

google-chrome --version

Error:

/bin/google-chrome: symbol lookup error: /bin/google-chrome: undefined symbol: ippValidateAttributes

Environment: Amazon Linux AMI on EC2 Google Chrome: Latest stable version (RPM package) Troubleshooting: Updated all system packages via sudo yum update. Request: Assistance in resolving the symbol lookup error related to ippValidateAttributes

asked 2 years ago915 views

1 Answer
1
Accepted Answer

Hello,

AL2 dont support latest version of google chrome, so updgrade your instance to AL2023.

** Else Use Chromium **

$ sudo amazon-linux-extras install epel -y

$ sudo yum install -y chromium

=================

Also try below method to install google chome

# sudo yum update -y
# sudo yum groupinstall "Development Tools" -y
# sudo yum install -y wget bzip2 gcc make
# curl -LO https://github.com/apple/cups/releases/download/v2.3.3/cups-2.3.3-source.tar.gz
# tar -xvf cups-2.3.3-source.tar.gz
# cd cups-2.3.3
# ./configure
#  make
# sudo make install
# cups-config --version
# sudo systemctl enable cups --now
#  wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
# sudo yum install ./google-chrome-stable_current_x86_64.rpm -y

answered 2 years ago

EXPERT

reviewed a year ago

  • Thank you for the solution, it works well. Do you know if these packages will be included in upcoming AMI updates?

  • I think NO, because AL2 support already ended.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.