Skip to content

Instantly share code, notes, and snippets.

@hu553in
Last active July 8, 2024 05:46
Show Gist options
  • Save hu553in/cc695b183b8160d5148973cd91ca39f1 to your computer and use it in GitHub Desktop.
Save hu553in/cc695b183b8160d5148973cd91ca39f1 to your computer and use it in GitHub Desktop.
How to download and install an old Chrome version (the Debian package)
#!/bin/bash
# required Chrome version can be found here:
# https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
CHROME_VERSION=""
wget --no-check-certificate \
https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb
dpkg -i google-chrome-stable_${CHROME_VERSION}_amd64.deb || apt-get -fqy install
rm -rf google-chrome-stable_${CHROME_VERSION}_amd64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment