firefox各版本,
https://ftp.mozilla.org/pub/firefox/releases/
原因分析:
崩溃是由于用了同一个配置文件了,单独给每个版本配置一个配置文件目录就可以。打开的时候用
firefox --no-remote -p
然后选择你对应的版本配置目录。一个版本配置一个目录
应该有全自动的配置方案,后面再研究。
脚本:
~/bin$ cat firefox*
#! /bin/sh
cd ~/tools/59.02/firefox/
#cd ../firefox59/
./firefox --no-remote -p &
#! /bin/sh
cd ~/tools/52.7/firefox/
./firefox --no-remote -p &
#! /bin/sh
cd /opt/firefox59
#cd ../firefox59/
./firefox --no-remote -p &
#! /bin/sh
cd /opt/firefox
#cd ../firefox64/
./firefox --no-remote -p &
https://blog.csdn.net/czmchen/article/details/81075486
https://blog.csdn.net/chengly0129/article/details/71502693
https://blog.csdn.net/kl222/article/details/80319542
http://forum.ubuntu.org.cn/viewtopic.php?t=294406
https://blog.csdn.net/gavinxlf/article/details/53173034