Skip to content

Instantly share code, notes, and snippets.

@premasagar
Created March 29, 2010 10:29
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save premasagar/347716 to your computer and use it in GitHub Desktop.
Save premasagar/347716 to your computer and use it in GitHub Desktop.
Restore Google Chrome on Linux (Ubuntu), when it starts with "Could not restore your profile"
#!/bin/sh
# Restore Google Chrome on Linux (Ubuntu), when it
# starts with "Could not restore your profile"
# $ ./google-chrome-restore.sh
rm -rf ~/.config/google-chrome/Backup
mv ~/.config/google-chrome/Default ~/.config/google-chrome/Backup
rm -rf ~/.config/google-chrome/Default
cp -R ~/.config/google-chrome/Backup ~/.config/google-chrome/Default
rm -rf ~/.config/google-chrome/Backup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment