最近在ubuntu系統(tǒng)中使用自帶的firefox瀏覽器,發(fā)現(xiàn)有寫問題,比如登陸后,書簽,歷史記錄等,原本在windows下同步的數(shù)據(jù)無法同步,添加書簽的功能也無法使用。
經(jīng)過查詢資料后得知,unbuntu系統(tǒng)中自帶的firefox是國際版的,服務(wù)器與中國版的不同,因此無法實現(xiàn)數(shù)據(jù)的同步,所以,我們需要重新安裝中國版的firefox火狐瀏覽器。下面是親測的安裝步驟。
1.首先,我們要下載最新版本的中國版firefox火狐瀏覽器,
下載地址:http://www.firefox.com.cn/
2.在下載的過程中,我們可以先刪除ubuntu系統(tǒng)自帶的火狐瀏覽器
sudo apt-get remove firefox3.下載完畢后,解壓,將解壓出的firefox文件夾移動到/opt目錄下
sudo mv firefox /opt4.進入下面的目錄
cd/uer/share/applications5.創(chuàng)建firefox.desktop文件
sudo vim firefox.desktop編輯內(nèi)容
[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=true6.保存后。就可以看到桌面上有了firefox,打開重新登錄賬號,查看書簽,發(fā)現(xiàn)已經(jīng)可以完美同步過來啦。