How to Install Google Chrome on Ubuntu Using the Terminal
Install Google Chrome on Ubuntu via Terminal: A Step-by-Step Guide
This guide provides a comprehensive walkthrough on how to install Google Chrome on your Ubuntu system using the terminal.
Steps:
-
Open the Terminal: Launch the terminal by pressing Ctrl+Alt+T.
-
Update Package Lists: Ensure your system is up-to-date by running the following command:
bash sudo apt update -
Install Necessary Dependencies: Install the required dependencies for Google Chrome with this command:
bash sudo apt install -y libxss1 libappindicator1 libindicator7 -
Download Google Chrome: Download the latest stable release of Google Chrome using wget:
bash wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -
Install the Downloaded Package: Install the downloaded .deb package using dpkg:
bash sudo dpkg -i google-chrome-stable_current_amd64.deb -
Fix Potential Dependency Issues: Address any missing dependencies with this command:
bash sudo apt --fix-broken install -
Launch Google Chrome: Once installation is complete, you can launch Google Chrome in two ways: * Applications Menu: Search for 'Google Chrome' in your applications menu. * Terminal Command: Execute the following command in the terminal:
bash google-chrome-stable
Congratulations! You have successfully installed Google Chrome on your Ubuntu system using the terminal. Enjoy browsing!
原文地址: https://www.cveoy.top/t/topic/fNg 著作权归作者所有。请勿转载和采集!