问题描述
\\n
Possible Duplicate:
\\nHide ‘Your profile could not be opened correctly’\\n
每当我启动 google-chrome 时,都会显示一个窗口,其中包含以下消息:
\\n
Your profile could not be opened\\n correctly.
\\n
Some features may be unavailable. \\n Please check that the profile exists\\n and you have permission to read and\\n write its contents.
\\n
这个问题的根源是什么?
最佳回答
这对我来说很管用。试试看吧,此过程包括备份您的 google-chrome 配置文件文件夹,这样如果这对您不起作用,您可以将其恢复。
为方便您使用,粘贴在此处。
\\n
\\n
- If the browser is open, close it\\n down.
\\n
- Open a terminal and run:
mv\\n ~/.config/google-chrome\\n ~/.config/google-chrome-old
\\n
- Launch google-chrome, you will be\\n asked to choose your search engine,\\n your choice.
\\n
- Close coogle-chrome (yes, click the\\n close button)
\\n
- After closing the browser you will\\n have a new user profile at\\n
~/.config/google-chrome
\\n
- Then let’s copy your profile into\\n the new place by running the next in\\n the terminal.
cp -r \\n ~/.config/google-chrome-old/Default\\n ~/.config/google-chrome/
\\n
\\n
我希望这对你有帮助。
祝你好运!
次佳回答
可能是存储配置文件的目录权限不正确。您的用户应该具有读写权限并且是该目录的所有者。
~/.config/google-chrome
可能是目录,因此您可能必须执行:
sudo chmod -R u+rw ~/.config/google-chrome
sudo chown -R your_user ~/.config/google-chrome
或者直接删除该目录,这样 Chrome 就会创建一个新的目录:
rm -r ~/.config/google-chrome