How to Install Chrome in Ubuntu Terminal

Installing Google Chrome on Ubuntu via the terminal is a straightforward process that can be accomplished in just a few steps. Google Chrome is a popular web browser known for its speed, security, and user-friendly interface. In this guide, we will walk you through the installation process using the terminal, ensuring you have the latest version of Chrome installed on your system.

Step 1: Open the Terminal

To get started, you need to open the terminal. You can do this by pressing Ctrl + Alt + T on your keyboard or searching for “Terminal” in your applications menu.

Step 2: Download the Google Chrome .deb Package

Next, you will need to download the latest Google Chrome .deb package. You can do this using the wget command. The following command will download the package directly from Google’s servers:

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

Step 3: Install Required Dependencies

Before installing Google Chrome, it’s a good idea to ensure that all required dependencies are installed. You can do this by running the following command:

sudo apt install -f

This command will automatically fix any broken dependencies and install the necessary libraries.

Step 4: Install Google Chrome

Now that you’ve downloaded the .deb package and ensured that all dependencies are met, you can install Google Chrome using the dpkg command. Run the following command:

sudo dpkg -i google-chrome-stable_current_amd64.deb

If you encounter any dependency errors during this process, simply run the following command to resolve them:

sudo apt install -f

Step 5: Launch Google Chrome

Once the installation process is complete, you can launch Google Chrome either by searching for it in your applications menu or by running the following command in the terminal:

google-chrome

Step 6: Keep Google Chrome Updated

To ensure that you always have the latest version of Google Chrome, you should keep your system updated. You can do this by regularly running the following commands:

sudo apt update
sudo apt upgrade

Conclusion

Installing Google Chrome on Ubuntu via the terminal is a quick and efficient process. By following these simple steps, you can enjoy a fast and secure browsing experience. For any additional tips or troubleshooting, feel free to explore the resources available on dropvps.com. Happy browsing!

Share:

More Posts

How to Install Maven on macOS 2025

What you will read?1 Check for Java Installation2 Install Homebrew (If Not Installed)3 Install Maven via Homebrew4 Verify Environment Variables (Optional)5 Create a Sample Maven

How to Use Google SMTP Server

What you will read?1 Step 1: Enable SMTP Access in Gmail2 Step 2: Secure Connection with TLS3 Step 3: Send an Email via SMTP4 Step

how to install wine on RHEL

What you will read?1 Check RHEL version and CPU architecture2 Update system and install base tools3 Verify subscription and enable CodeReady Builder4 Enable EPEL repository5

Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments