25

The Error reads:

Your profile could not be opened correctly. Some features may be unavailable. Please check that the profile exists and you have permission to read and write its contents.

I have checked for a fix but they involve resetting Chromium and losing all my Bookmarks. I believe it is a sync problem. Is there a way to fix it?

Kerem
  • 686
  • 9
  • 13

7 Answers7

31

Simply use

rm -r ~/.config/google-chrome/Default/Web\ Data

or (on Ubuntu 14.10)

rm -r ~/.config/chromium/Default/Web\ Data

or, for the lazy,

l ~/.config/google-chrome/Default/Web\ Data
l ~/.config/chromium/Default/Web\ Data
rm -rf ~/.config/google-chrome/Default/Web\ Data
rm -rf ~/.config/chromium/Default/Web\ Data

* Be careful while using rm -rf

UPDATE

I am really sick of seeing this error and I did this;

Make a file

nano ~/delete-chrome-web-data

Put this in it

#!/usr/bin/env bash
rm -rf ~/.config/chromium/Default/Web\ Data
rm -rf ~/.config/google-chrome/Default/Web\ Data

give the script execute permission

chmod u+x delete-chrome-web-data 

And when I see that error, run: sh ~/delete-chrome-web-data

Zanna
  • 70,465
Kerem
  • 686
  • 9
  • 13
  • Also worked for me. Chromium Version 37.0.2062.120 Ubuntu 14.04 (281580) (64-bit). Be sure to substitute "chromium" for "google-chrome" in the path if appropriate. I exited chromium first via chromium menu in unity top panel. Other solutions in this thread were not required. – Reece Sep 28 '14 at 16:38
  • Worked for me, but the next time I logged into my computer and opened Chrome, the error message appeared again. – Seppo Enarvi Feb 02 '15 at 11:28
  • Is this means we'll lose all the data? or will it download cloud synced data after signed in again? – armanke13 Feb 27 '16 at 05:27
  • @armanke13 ; no, you will clear only local data, it won't remove nothing cloud based. – Kerem Feb 29 '16 at 09:02
  • This "trick" doesn't work anymore – lifeofguenter Apr 30 '16 at 06:34
  • 1
    Whenever I intend to issue an rm -rf command anywhere on any system, I always omit the -rf until after the path, to never accidentally pinky the enter key instead of shift and needing to print a resume shortly thereafter. – Hydranix Aug 19 '17 at 23:12