Skip to content

Instantly share code, notes, and snippets.

@guest271314
Last active April 6, 2025 01:30
Show Gist options
  • Save guest271314/a561cb7963cc01ec6f2313aeb39d26bc to your computer and use it in GitHub Desktop.
Save guest271314/a561cb7963cc01ec6f2313aeb39d26bc to your computer and use it in GitHub Desktop.
Get, extract Google Chrome Stable from .deb
wget --show-progress --progress=bar https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# https://askubuntu.com/a/1512766/92739
dpkg --fsys-tarfile google-chrome-stable_current_amd64.deb | tar -xv --strip-components=3 ./opt/google/chrome
rm -rf google-chrome-stable_current_amd64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment