DEV Community

abbazs
abbazs

Posted on • Edited on

2

How to install google chrome in ubuntu using apt-get?

Here is how one can install google chrome in ubuntu:

sudo apt update; apt install -y curl aptitude
curl -fsSL https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/google.gpg >/dev/null
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list'
sudo aptitude update
sudo aptitude install -y google-chrome-stable
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Billboard image

Detect & resolve downtimes before users even know

Trusted by Vercel, Render, LinkedIn, and thousands of teams, Checkly monitors your website or application, sends real-time alerts during downtimes, and speeds up recovery with full-stack tracing.

Start Monitoring

👋 Kindness is contagious

Engage with a sea of insights in this enlightening article, highly esteemed within the encouraging DEV Community. Programmers of every skill level are invited to participate and enrich our shared knowledge.

A simple "thank you" can uplift someone's spirits. Express your appreciation in the comments section!

On DEV, sharing knowledge smooths our journey and strengthens our community bonds. Found this useful? A brief thank you to the author can mean a lot.

Okay