ubuntu下手動安裝Thunderbird簡體中文正式版
1.打開終端,我們將要把它安裝到 /opt 目錄下:
代碼:
cd /opt
2.下載thunderbird,也可以自己下載最新版,然后拷貝到/opt下:
鏈接如下:http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.6/linux-i686/zh-CN/thunderbird-2.0.0.6.tar.gz
代碼:
sudo wget http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.6/linux-i686/zh-CN/thunderbird-2.0.0.6.tar.gz
3.解壓縮下載文件到/opt,解壓縮文件夾名字為thunderbird
代碼:
sudo tar -xvf thunderbird-2.0.0.6.tar.gz
4. 更改文件夾所有者同訪問權(quán)限:
代碼:
sudo chown -R root:root /opt/thunderbird/
sudo chmod -R 755 /opt/thunderbird/
5.建立鏈接文件:
代碼:
sudo gedit /usr/bin/thunderbird.sh
6.拷貝一下內(nèi)容到相應(yīng)編輯器中,然后保存并關(guān)閉.
代碼:
cd /opt/thunderbird/
./thunderbird
7.使該文件具有可執(zhí)行屬性:
代碼:
sudo chmod +x /usr/bin/thunderbird.sh
8. 建立快捷方式:
代碼:
sudo gedit /usr/share/applications/thunderbird.desktop
9. 拷貝一下內(nèi)容到相應(yīng)編輯器中,然后保存并關(guān)閉.
代碼:
[Desktop Entry]
Name=Thunderbird
Comment=Read/Write Mail/News with Mozilla Thunderbird
Exec=thunderbird.sh
Icon=/opt/Thunderbird/chrome/icons/default/default.xpm
Terminal=false
Type=Application
Categories=Application;Network;
ps: 如果這步?jīng)]有反應(yīng)的請自己手動添加一下,我實驗了n遍,在Internet菜單下就是沒快捷方式,郁悶... ...最后手動解決.另外,在終端中輸入thunderbird.sh也可以啟動的.
執(zhí)行完上述操作后,在 應(yīng)用程序--Internet--Thunderbird,就可以看到連接了,但是執(zhí)行后無響應(yīng),在終端中執(zhí)行命令: thunderbird.sh 提示出錯:Segmentation fault (core dumped).
評論