Last active
October 7, 2025 23:58
-
-
Save hu553in/cc695b183b8160d5148973cd91ca39f1 to your computer and use it in GitHub Desktop.
How to download and install an old Chrome version (the Debian package)
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
#!/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}-1_amd64.deb | |
dpkg -i google-chrome-stable_${CHROME_VERSION}-1_amd64.deb || apt-get -fqy install | |
rm -rf google-chrome-stable_${CHROME_VERSION}-1_amd64.deb |
Thanks 🙏
The URL seems to be missing part of the filename. With this change it worked for the version I needed:
-google-chrome-stable_${CHROME_VERSION}_amd64.deb
+google-chrome-stable_${CHROME_VERSION}-1_amd64.deb
Thanks, I was able to download the 140 version I needed after adding the '-1' to the version that @aqt mentioned.
thank you guys, updated gist
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@royfrancis also this one - http://www.slimjet.com/chrome/google-chrome-old-version.php