Skip to main content

Posts

Showing posts with the label install chrome ubuntu

install chrome ubuntu Google on Linux

 If you're a Linux user, specifically an Ubuntu user, you may have found yourself wondering how to install Google Chrome on your system. While Ubuntu's default browser, Firefox, is a great option, sometimes you just need the familiar interface and extensions that Chrome provides.  But fear not, installing Chrome on Ubuntu is actually quite easy and can be done in just a few steps. Here's how to do it: 1. Start by opening the Terminal on your Ubuntu machine. You can do this by pressing Ctrl + Alt + T, or by searching for "Terminal" in the applications menu. 2. Once the Terminal is open, type in the following command:  ``` wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb ``` This will download the Chrome installation file to your system.  3. Next, type in the following command to install Chrome: ``` sudo dpkg -i google-chrome-stable_current_amd64.deb ``` This will install Chrome on your Ubuntu machine. 4. Once the installation is comple...