Install Google Chrome On Ubuntu Desktop

 Here’s the quickest, cleanest way to install Google Chrome on Ubuntu Desktop, using either the terminal or the GUI. 

 Both methods work on Ubuntu 22.04, 24.04, and newer.  


🧩 Method 1 — Install Chrome via Terminal (Fastest)

1. Download the Chrome .deb package

bash

wget https://dl.google.com/linux/direct/google-chrome-stablecurrentamd64.deb



2. Install it with APT
bash

sudo apt install ./google-chrome-stablecurrentamd64.deb

  This automatically installs dependencies and adds Google’s repo so Chrome updates with the system.  


3. Launch Chrome

bash

google-chrome


🖱️ Method 2 — Install Chrome via GUI (Beginner‑friendly)

1. Open Firefox (preinstalled on Ubuntu).  

2. Go to the official Chrome download page.  

3. Choose 64‑bit .deb (For Debian/Ubuntu) → Accept and Install.  

4. Once downloaded, open the .deb file from Downloads.  

5. Ubuntu Software Center will open → click Install.  

6. Launch Chrome from the Applications menu.  


🔧 Optional —

 Add Google’s APT Repository Manually
(Useful if you want to install via apt install google-chrome-stable directly.)

1. Update packages:  

bash

sudo apt update

2. Install dependencies: 
 
bash

sudo apt install ca-certificates curl -y

3. Add Google’s signing key & repo (Ubuntu 22.04+ uses DEB822 format).  


🚀 You’re Ready
 Once installed, Chrome will appear in your app launcher and update automatically with the rest of your system.

Comments

Popular Posts