Ubuntu下firefox账号无法登录问题

ubuntu16.04自带有firefox浏览器,但是会发现账号无法登录.原来在windows下的数据没有办法同步,书签也同步不了.经过查询资料后得知,Ubuntu系统中自带的firefox是国际版,服务器与windows下的不一样,因此没法实现数据同步.所以需要重新安装中国版的firefox浏览器.

安装步骤

1.首先是下载最新版本的中国版firefox浏览器

http://www.firefox.com.cn/

2.下载需要一段时间,我们可以先卸载自带的firefox

sudo apt-get remove firefox

3.下载完毕后,解压,将解压后的firefox移动到/opt目录下

sudo mv firefox /opt

4.进入下面的目录

cd/uer/share/applications

5.创建desktop文件,使用编译器编写代码

//用vim编写desktop
sudo vim firefox.desktop
//编写的内容
[Desktop Entry]
Name=firefox
Name[zh_CN]=火狐浏览器
Comment=火狐浏览器
Exec=/opt/firefox/firefox
Icon=/opt/firefox/browser/chrome/icons/default/default128.png
Terminal=false
Type=Application
Categories=Application;
Encoding=UTF-8
StartupNotify=true

6.保存后,登录账号即可

猜你喜欢

转载自blog.csdn.net/zhaozhichenghpu/article/details/80930010