Skip to content

Instantly share code, notes, and snippets.

@Ditti4
Created October 25, 2014 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ditti4/3e83751a2875ac10f1ad to your computer and use it in GitHub Desktop.
Save Ditti4/3e83751a2875ac10f1ad to your computer and use it in GitHub Desktop.
SPDY workaround for Chrome@Debian
#!/bin/sh
/usr/bin/google-chrome-unstable.orig --use-spdy=off $@
# run all of this as root
cd /usr/bin
mv google-chrome-unstable google-chrome-unstable.orig
nano google-chrome-unstable # or any other editor
chmod +x google-chrome-unstable
# better copy this because every update will replace google-chrome-unstable again
cp google-chrome-unstable google-chrome-unstable.new
## after updating Chrome run this as root and you should be good to go again
cd /usr/bin
mv google-chrome-unstable.new google-chrome-unstable
@usmonster
Copy link

Filed issue for the bug: https://crbug.com/436835 .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment