Skip to content

Instantly share code, notes, and snippets.

@maazghani
Created August 24, 2025 20:52
Show Gist options
  • Save maazghani/538b6e5ff140533df2dfa0d2f3e4404d to your computer and use it in GitHub Desktop.
Save maazghani/538b6e5ff140533df2dfa0d2f3e4404d to your computer and use it in GitHub Desktop.
ubuntu.md
# 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