红联Linux门户
Linux帮助

Ubuntu下解决:firefox profile cannot be loaded it may be miss

发布时间:2016-04-25 15:59:17来源:linux网站作者:tomheaven

今天打开Ubuntu的Firefox时突然出现了如下错误:
“firefox profile cannot be loaded it may be missing or inaccessible”。
意思是Firefox无权访问配置目录了。造成这个问题的最有可能原因是root时使用了firefox。


Firefox的配置目录有两个:在你的用户主目录下有隐藏目录,.mozilla 和 .cache/mozilla。
在终端中执行如下命令:

cd ~
sudo chown -R username:usergroup .mozilla
sudo chown -R username:usergroup .cache/mozilla

其中username替换为你的用户名,usergroup替换为你的用户组名(一般与用户名相同)。


再打开Firefox,火狐又复活了!


本文永久更新地址:http://www.linuxdiyf.com/linux/20088.html