Google Chrome is one of the most popular web browsers in the world, known for its speed, stability, and wide extension support. If you're using Ubuntu and want to install Chrome, follow this simple step-by-step tutorial. No advanced knowledge required.
Step 1: Open the Terminal
You can use the shortcut: Ctrl + Alt + T
This will open the terminal, where you can type commands.
Step 2: Download Google Chrome
Use the following command to download the latest .deb
package of Google Chrome directly from Google's official website:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
This command will download the Chrome installer file to your current directory.
Step 3: Install the Downloaded Package
After the download completes, install Chrome using this command:
sudo dpkg -i google-chrome-stable_current_amd64.deb
It will ask for your password. Type it and press Enter.
Step 4: Fix Missing Dependencies (if any)
If you see errors during installation, you can fix them with this command:
sudo apt --fix-broken install
Then, run the install command again if needed.
Step 5: Launch Google Chrome
Once the installation is complete, you can start Chrome by typing:
google-chrome-stable
Or, go to your application menu and search for Google Chrome.
Optional: Set Google Chrome as Default
When Chrome opens for the first time, it may ask if you want to make it your default browser. You can choose Yes or skip it for now.
Uninstall Chrome (if needed)
If you want to remove Google Chrome from your Ubuntu system:
sudo apt remove google-chrome-stable
Final Notes
- Make sure your system is up to date before installing new software.
- Chrome will update itself automatically when you update your system using:
sudo apt update && sudo apt upgrade
Installing Google Chrome on Ubuntu is easy using the terminal. With just a few commands, you can download, install, and start using one of the most powerful browsers on Linux.
For more tutorials, keep following Alpha ARP – your guide to smarter Linux usage.