Created
August 24, 2025 20:52
-
-
Save maazghani/538b6e5ff140533df2dfa0d2f3e4404d to your computer and use it in GitHub Desktop.
ubuntu.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. Grab Google’s signing key | |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
# 2. Add Google’s repo to apt sources | |
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | \ | |
sudo tee /etc/apt/sources.list.d/google-chrome.list | |
# 3. Update package lists | |
sudo apt update | |
# 4. Install Chrome (stable version) | |
sudo apt install google-chrome-stable -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment