我是试在双启动 Ubuntu/Windows 安装中的 FireFox Ubuntu 配置文件中使用 FireFox Windows 配置文件。
这是编辑后的 ~/.mozilla/firefox/profiles.ini
[General]
StartWithLastProfile=1
[Profile0]
Name=windows
IsRelative=0
Path=/media/myself/4604CC4A04CC3EA5/Documents and Settings/my self/Application Data/Mozilla/Firefox/Profiles/l2fh3jo9.default
;http://www.jasom.net/how-to-use-same-firefox-profile-in-dual-boot-linux-ubuntu-windows-installation
但这不起作用。我重新启动 Ubuntu Firefox 后,它不使用 Windows 的“Firefox 配置文件:附加组件、书签、历史记录”...
这可能出了什么问题?
PS 我知道 Firefox 同步。但这不是我要找的解决方案。
答案1
假设您的 Windows 分区挂载为 /media 并且您的 Windows 用户名是 userName,首先将(随机命名的)旧配置文件目录复制到您的 Ubuntu 帐户:
cp -r /media/Users/userName/AppData/Roaming/Mozilla/Firefox/*.default ~/.mozilla/firefox/win7profile
然后退出 Firefox 并编辑 ~/.mozilla/firefox/profiles.ini 文件,将 StartWithLastProfile=1 更改为 StartWithLastProfile=0,并在末尾添加以下内容:
[Profile1]
Name=win7profile
IsRelative=1
Path=win7profile
重新启动 Firefox。然后它将允许您选择要使用的配置文件。