Are you looking for a way to install Google Chrome on your Linux system without using the graphical user interface (GUI)? If so, you have come to the right place. In this article, we will show you how to install Chrome on Terminal Linux using the command line. This method is useful if you are having problems with the GUI or if you prefer to use the command line.
The first step is to update your system’s package manager. This will ensure that you have the latest version of the package manager installed. To update your package manager, open a terminal window and type the following command: sudo apt update. Once the package manager is updated, you can proceed to the next step.
The next step is to install the Google Chrome package. To do this, type the following command in a terminal window: sudo apt install google-chrome-stable. This command will install the latest stable version of Google Chrome on your system. Once the installation is complete, you can launch Chrome by typing the following command in a terminal window: google-chrome. You can also create a desktop shortcut to Chrome if you prefer.
How to Install Chrome on Terminal Linux
Google Chrome is a widely used web browser known for its speed, security, and cross-platform compatibility. While it’s typically distributed as a graphical installer, it can also be installed on Linux systems using the command line.
To install Chrome on Terminal Linux, follow these steps:
- Update your system’s package manager:
- Add the Google repository:
- Add the repository to your sources list:
- Update your system’s package manager again:
- Install Google Chrome:
sudo apt-get update
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update
sudo apt-get install google-chrome-stable
People Also Ask
How do I update Google Chrome on Linux Terminal?
To update Google Chrome on Linux Terminal, run the following command:
sudo apt-get update && sudo apt-get upgrade
How do I remove Google Chrome from Linux Terminal?
To remove Google Chrome from Linux Terminal, run the following command:
sudo apt-get remove google-chrome-stable