Created
March 29, 2010 10:29
-
-
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"
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/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