当前位置: 首页>>技术教程>>正文


启动 google-chrome 时出现配置文件错误

问题描述

\\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

  1. If the browser is open, close it\\n down.
  2. \\n

  3. Open a terminal and run: mv\\n ~/.config/google-chrome\\n ~/.config/google-chrome-old
  4. \\n

  5. Launch google-chrome, you will be\\n asked to choose your search engine,\\n your choice.
  6. \\n

  7. Close coogle-chrome (yes, click the\\n close button)
  8. \\n

  9. After closing the browser you will\\n have a new user profile at\\n ~/.config/google-chrome
  10. \\n

  11. 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/
  12. \\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

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/14531.html,未经允许,请勿转载。