Firefox (Snap) 在哪里存储配置文件?

han*_*dle 15 configuration firefox directory snap

没有~/.mozilla/firefox,只有~/snap/firefox/但似乎没有配置文件:

\n

~/snap/firefox$ find places.sqlite
\n find: \xe2\x80\x98places.sqlite\xe2\x80\x99: No such file or directory\n

\n

不确定这意味着什么:

\n
$ snap connections firefox\nInterface                 Plug                            Slot                             Notes\n...\n\npersonal-files            firefox:dot-mozilla-firefox     :personal-files                  -\n
Run Code Online (Sandbox Code Playgroud)\n
\n编辑:\n

find工作起来并不那么简单,而是使用:

\n
~/snap/firefox$ find . -name places.sqlite \n./common/.mozilla/firefox/<ID>.default/places.sqlite\n
Run Code Online (Sandbox Code Playgroud)\n

Hug*_*ugo 18

我昨天升级到 22.04,Firefox 已将我的配置文件从原来的目录导入~/.mozilla/firefox/到新目录中,~/snap/firefox/common/.mozilla/firefox/这就是它们现在存储的位置。

如果您导航到about:profiles它将显示您当前的个人资料及其完整路径。

个人文件套接字授予对 $HOME 的访问权限,请在此处查看更多信息


Pil*_*ot6 7

它存储在

~/snap/firefox/common/.mozilla/firefox
Run Code Online (Sandbox Code Playgroud)

  • 谢谢,还刚刚发现查看“about:profiles”(常规设置不显示任何路径)。 (2认同)