Google Chrome, the most popular web browser, is renowned for its speed, security, and user-friendly interface. It’s a preferred choice for many, and if you’re a Linux enthusiast running Ubuntu, you might want to install Google Chrome.
This blog post presents an easy-to-follow guide on how to install Google Chrome on Ubuntu, both through the Graphical User Interface (GUI) and the command line. Enhance your browsing experience by unlocking the world of Chrome extensions and updates.
Why Install Google Chrome?
Google Chrome is a highly flexible browser that offers a myriad of extensions and tools, significantly improving your browsing experience. Ubuntu comes with Firefox as the default browser.
While Firefox has improved a lot, Google Chrome provides a more familiar environment for those migrating from other operating systems. Moreover, certain web applications run better on Google Chrome due to the in-built support for the latest web technologies.
Installing Google Chrome on Ubuntu via GUI
To install Google Chrome using the GUI, follow these steps:
- Visit the official Google Chrome download page from any browser (the default is Firefox in Ubuntu).
- Click on the ‘Download Chrome’ button.
- You’ll be prompted to download the .deb file for Ubuntu. Click on ‘Accept and Install.’
- Once the .deb file is downloaded, right-click on it and select ‘Open With Software Install.’
- Click on ‘Install’ in the Ubuntu Software center.
- You may be prompted to enter your password. Do so and wait for a few seconds for the installation to complete.
Now, you can find Google Chrome in your Ubuntu launcher and start using it.
Installing Google Chrome on Ubuntu via the Terminal
If you prefer using the command line, follow these steps:
- Open Terminal on Ubuntu (Ctrl+Alt+T).
- Download the Chrome .deb file by typing the following command:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- Once the file is downloaded, install it with the command:
sudo dpkg -i google-chrome-stable_current_amd64.deb
- If you encounter any dependency problems, run the following command:
sudo apt install -f
You now have Google Chrome installed on your Ubuntu system.
Updating Google Chrome to the Latest Version
Google Chrome will be updated automatically whenever you update your system software. You can check for updates using the Software Updater tool or the command line with:
sudo apt update sudo apt upgrade
Setting Google Chrome as Your Default Browser
To set Google Chrome as your default browser, follow these steps:
- Open Google Chrome and click on the three vertical dots on the top-right corner of the window.
- Go to ‘Settings.’
- Scroll down to the ‘Default Browser’ section and click on ‘Make Google Chrome the Default Browser.’
Uninstalling Google Chrome from Ubuntu
If you want to uninstall Google Chrome, you can do so via the Terminal with the following command:
sudo apt-get purge google-chrome-stable
You can also uninstall it from the Ubuntu Software center by looking for Google Chrome and clicking ‘Remove.’
Google Chrome offers a familiar, user-friendly, and rich browsing environment that complements your Ubuntu experience. With this guide, you can easily install, update, and manage Google Chrome on your Ubuntu system. Enjoy browsing!
FAQs
How To Install Google Chrome On Ubuntu?
To install Google Chrome on Ubuntu, you have two options: the graphical user interface (GUI) method and the command line method.
What Is The GUI Method To Install Google Chrome On Ubuntu?
The GUI method to install Google Chrome on Ubuntu involves downloading the .deb file from the official website and then using the package installer to install it.