美文网首页
ubuntu移动办公中设置firefox和thunderbird

ubuntu移动办公中设置firefox和thunderbird

作者: 流浪的企鹅 | 来源:发表于2020-05-19 16:56 被阅读0次

办公需要临时使用一台式机。这台机器是公用机,多人都会使用。而自己的firefox和thunderbird邮件客户端出于安全考虑,配置并不想安装在台式机上。怎么办?

firefox和thunderbird提供了profile设置机制可以很好的满足这个需求。firefox和thunderbird启动时,会去 ~/.mozilla/firefox/和/home/xujx/.thunderbird/ 目录下寻找profile.ini 和installs.ini配置文件,加载相应的用户设置

假设配置目录为:

/media/usb/home/xujx/.mozilla/firefox/drdweogm.default
/media/usb/home/xujx/.mozilla/.thunderbird/ej0i1p78.default

vim ~/.mozilla/firefox/profile.ini
[Profile0]
Name=james
IsRelative=0
Path=/media/usb/home/xujx/.mozilla/firefox/drdweogm.default

[General]
StartWithLastProfile=1
Version=2

说明:

  • IsRelative必须是0, 表示使用绝对路径
  • Path 使用绝对路径
  • Name 可以根据实际情况自己起一个名字
  • 仅保留 [Profile0]和[General]其下内容即可, 其他[ ]的内容不使用的话可以删除
vim ~/.thunderbird/profile.ini
[Profile0]
Name=james_cspdc
IsRelative=0
Path=/media/usb/home/xujx/.thunderbird/ej0i1p78.default
Default=1

说明:

  • IsRelative必须是0, 表示使用绝对路径
  • Default 设为1 ,表明默认使用此设置
  • Path 使用绝对路径
  • Name 可以根据实际情况自己起一个名字
  • 其他[ ]的内容不使用的话可以删除

相关文章

网友评论

      本文标题:ubuntu移动办公中设置firefox和thunderbird

      本文链接:https://www.haomeiwen.com/subject/txjbohtx.html