Skip to content
Home ยป How to Download Chrome on Ubuntu Using Terminal?

How to Download Chrome on Ubuntu Using Terminal?

To download Chrome on Ubuntu using the terminal, you can follow these steps:

1. Open the terminal by pressing Ctrl+Alt+T or by searching for "Terminal" in the applications.
2. Update the package lists and upgrade the software on your system using the following command:
"`
sudo apt update && sudo apt upgrade
"`
3. After the update is complete, you can proceed to download Chrome by adding its repository key using the wget command:
"`
wget -q -O – https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add –
"`
4. Next, add the Chrome repository to your system’s sources list:
"`
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
"`
5. Once the repository is added, you need to update the package lists again to include the newly added repository:
"`
sudo apt update
"`
6. Finally, install Google Chrome by running the following command:
"`
sudo apt install google-chrome-stable
"`
7. During the installation, you may be prompted to confirm the installation and provide your password. Follow the on-screen instructions and wait for the installation to complete.

After the installation is finished, you can launch Chrome by searching for it in the application menu or by running the `google-chrome-stable` command in the terminal. Remember to keep the software updated by regularly checking for updates using the package manager or Chrome’s built-in update mechanism.

Note: These instructions are specific to the latest Ubuntu version and Chrome version mentioned in this scenario (2023, Ubuntu, and Chrome 14). Please ensure you have appropriate privileges and adjust the commands according to your specific system configuration if necessary.

Video Tutorial:How do I install Chrome on Ubuntu 20.04 from terminal?

How do I download Chrome from Linux terminal?

To download Chrome from the Linux terminal, you can follow these steps:

1. Open the terminal on your Linux distribution. You can usually find it in the applications menu under "System Tools" or by searching for "terminal".

2. Update the package list on your system by running the following command:
"`
sudo apt update
"`

3. Install the `wget` package, which allows you to retrieve files from the web using the command line. You can install it by running this command:
"`
sudo apt install wget
"`

4. Download the Chrome installation package using the `wget` command. The URL may change depending on the currently available version of Google Chrome. Replace the URL in the command below with the latest URL from the official Google Chrome download page:
"`
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
"`

5. After the download is complete, you can install Chrome using the following command:
"`
sudo dpkg -i google-chrome-stable_current_amd64.deb
"`

6. If you encounter any dependency errors during installation, you can resolve them by running the following command:
"`
sudo apt –fix-broken install
"`

7. Once the installation process is finished, you can access Google Chrome by searching for it in your applications menu or by running the `google-chrome` command in the terminal.

By following these steps, you should be able to download and install Google Chrome on your Linux system directly from the terminal without the need for a graphical interface.

How to install web browser from terminal Ubuntu?

To install a web browser from the terminal in Ubuntu, you can use the apt package manager, which is the default package manager on Ubuntu. Here’s a step-by-step guide:

1. Open the terminal by pressing Ctrl + Alt + T or by searching for "Terminal" in the Ubuntu Dash.
2. Update the package lists using the following command:
"`
sudo apt update
"`

3. Once the package lists are updated, you can install a web browser of your choice. Here are a few examples:

– To install Firefox, use the command:
"`
sudo apt install firefox
"`

– To install Google Chrome, you’ll need to add the Google Chrome repository to your system. Run the following commands to perform the installation:
"`
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb
"`

– To install Chromium, the open-source version of Chrome, you can use the command:
"`
sudo apt install chromium-browser
"`

– If you prefer a lightweight option, you can install Midori using the following command:
"`
sudo apt install midori
"`

4. After entering the installation command for your chosen web browser, you’ll be prompted to confirm the installation by typing "Y" and pressing Enter.
5. The package manager will then download and install the web browser along with any necessary dependencies.
6. Once the installation is complete, you can launch the web browser either by searching for it in the Ubuntu Dash or by running the browser’s command name in the terminal.

Remember to adapt the instructions according to the specific web browser you wish to install.

How do I install Chrome on Ubuntu 18.04 terminal?

To install Chrome on Ubuntu 18.04 using the terminal, you can follow these steps:

1. Open the terminal by pressing Ctrl+Alt+T or searching for "Terminal" in the Activities menu.

2. Update the package lists for upgrades and new package installations by running the following command:
"`
sudo apt update
"`

3. Install the necessary dependencies with the command below:
"`
sudo apt install -y wget curl
"`

4. Download the Chrome installation package using either of the following commands:
For 64-bit systems:
"`
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
"`
For 32-bit systems:
"`
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
"`

5. Install the downloaded package using the command:
"`
sudo apt install -y ./google-chrome-stable_current_*.deb
"`

6. The installation process will ask for your user password. Enter it when prompted, and Chrome will be installed on your system.

After following these steps, you should have Chrome installed on your Ubuntu 18.04 system. You can open Chrome by searching for it in the Applications menu or by running the command `google-chrome` in the terminal.

How to install Chrome OS using terminal?

Installing Chrome OS using the terminal involves a series of steps to download and install the appropriate files. Here’s a step-by-step guide on how to install Chrome OS using the terminal:

1. Open the terminal on your device. You can typically find it in the Applications or Utilities folder.

2. Ensure that you have the required dependencies installed on your system. These might include tools like KVM (Kernel-based Virtual Machine), QEMU (Quick Emulator), and some Linux packages. You can install them using package managers such as APT or YUM.

3. Download the Chrome OS image file (also known as Chrome OS recovery image) compatible with your device from reputable sources like the Chromium OS website or official firmware repositories.

4. Once the download is complete, navigate to the directory where the file is located using the terminal’s `cd` command. For example, if the file is in the "Downloads" folder, you can use the command: `cd Downloads`.

5. Extract the image file from the compressed format if necessary using tools like `tar` or `unzip`. The command might vary depending on the file format, but for a tar file, you can use: `tar -xvzf filename.tar.gz`.

6. Connect a USB drive to your computer and make sure it is empty or doesn’t contain any important data because the following step will erase its contents.

7. Identify the device name of your USB drive using the terminal command `lsblk`. It will display a list of connected drives. Note the name of your USB drive, which usually starts with "/dev".

8. Write the Chrome OS image file to the USB drive using the `dd` command. Replace "image_file" with the path to the extracted image file and "usb_device" with the name of your USB drive that you identified earlier. The command should look like: `sudo dd if=image_file of=/dev/usb_device bs=4M status=progress`, where `sudo` gives you the required permissions, and `bs` and `status=progress` are optional parameters that display the progress of the write process.

9. Once the writing process finishes, safely eject the USB drive from your computer.

10. Restart your computer and boot it from the USB drive. This usually requires accessing the boot menu during startup, which varies depending on your device. Check the manufacturer’s website or search online for instructions specific to your computer model.

11. Chrome OS will now load from the USB drive, enabling you to experience the operating system without installing it permanently on your device. You can explore its features and functionalities, test apps, and decide if you want to install it. Installation options may appear within the Chrome OS environment.

Please note that installing Chrome OS on non-Chromebook devices can sometimes be challenging, and compatibility might vary. Be sure to research the specific requirements and potential issues for your device before proceeding.

How to install Google Chrome in Ubuntu 21.04 using terminal?

To install Google Chrome in Ubuntu 21.04 using the terminal, you can follow these steps:

Step 1: Open the terminal by pressing Ctrl+Alt+T or by searching for "terminal" in the applications menu.

Step 2: Update the package lists on your system by running the following command:

"`
sudo apt update
"`

Step 3: Once the update is complete, you can proceed to install Google Chrome. Run the following commands one by one:

"`
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
"`

Step 4: If there are any missing dependencies, you can fix them by running the following command:

"`
sudo apt –fix-broken install
"`

Step 5: After the installation is completed successfully, you can open Google Chrome either by searching for it in the applications menu or by running the following command in the terminal:

"`
google-chrome-stable
"`

That’s it! You have now installed Google Chrome on Ubuntu 21.04 using the terminal. Enjoy browsing the web with Chrome!

How to install Chrome in terminal?

To install Chrome via the terminal, you can follow these steps:

1. Open the terminal on your respective operating system. On macOS, you can use the built-in Terminal application. On Linux, it may vary depending on the distribution, but common options are GNOME Terminal, KDE Konsole, or Xfce Terminal. On Windows, you can use PowerShell or a terminal emulator like Git Bash.

2. Update the package repository on your system by running the appropriate command. For Ubuntu-based distributions, you can use:
"`bash
sudo apt update
"`
For Fedora and CentOS:
"`bash
sudo dnf update
"`
For Arch Linux:
"`bash
sudo pacman -Syu
"`

3. Add the Google Chrome repository to your system’s package sources. Execute the following command based on your distribution:
For Ubuntu or Debian-based distributions:
"`bash
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
"`
For Fedora:
"`bash
sudo dnf install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
"`
For CentOS:
"`bash
sudo yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
"`
For openSUSE:
"`bash
sudo zypper install https://dl.google.com/linux/chrome/rpm/stable/x86_64/google-chrome-stable_current_x86_64.rpm
"`

4. Once the repository is added, you can install Chrome by running the appropriate command:
On Ubuntu or Debian-based distributions:
"`bash
sudo apt install google-chrome-stable
"`
On Fedora:
"`bash
sudo dnf install google-chrome-stable
"`
On CentOS:
"`bash
sudo yum install google-chrome-stable
"`
On openSUSE:
"`bash
sudo zypper install google-chrome-stable
"`

5. The package manager will handle the installation process, including any required dependencies. You will be prompted for your password to authorize the installation.

After completing these steps, you should have Google Chrome successfully installed on your system via the terminal.